userpreferencestest.java
来自「A static analysis tool to find bugs in J」· Java 代码 · 共 22 行
JAVA
22 行
package edu.umd.cs.findbugs.config;import junit.framework.Assert;import junit.framework.TestCase;public class UserPreferencesTest extends TestCase { UserPreferences prefs; @Override protected void setUp() throws Exception { prefs = UserPreferences.createDefaultUserPreferences(); } public void testClone() { UserPreferences clone = (UserPreferences) prefs.clone(); Assert.assertEquals(prefs, clone); Assert.assertEquals(prefs.getClass(), clone.getClass()); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?