?? localtests.java
字號:
package tests;
import junit.framework.*;
public class LocalTests extends TestCase
{
public static boolean logging = false;
public LocalTests(String name)
{
super(name);
}
public static TestSuite suite()
{
TestSuite ret = new TestSuite();
ret.addTest(new TestSuite(ClassicFilterTest.class));
ret.addTest(new TestSuite(PolicyTest.class));
ret.addTest(new TestSuite(ModelTest.class));
//ret.addTest(new TestSuite(UserLevelTest.class));
ret.addTest(new TestSuite(EmptyTest.class));
return ret;
}
public static void log(String s)
{
if (logging)
{
System.out.println(s);
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -