jnditestsuite.java
来自「JAVA开源LDAP浏览器jxplorer的源码!」· Java 代码 · 共 54 行
JAVA
54 行
/**
* Created by IntelliJ IDEA.
* User: betch01
* Date: Dec 3, 2002
* Time: 12:03:50 PM
* To change this template use Options | File Templates.
*/
package com.ca.commons.jndi;
import junit.framework.*;
public class JndiTestSuite extends TestCase {
public JndiTestSuite(String name)
{
super(name);
}
/**
* Assembles and returns a test suite
* containing all known tests.
*
* New tests should be added here!
*
* @return A non-null test suite.
*/
public static Test suite()
{
TestSuite suite = new TestSuite();
// The tests...
suite.addTest(BasicOpsTest.suite());
suite.addTest(SchemaOpsTest.suite());
suite.addTest(ConnectionDataTest.suite());
suite.addTest(JNDIOpsTest.suite());
return suite;
}
/**
* Runs the test suite.
*/
public static void main(String args[])
{
junit.textui.TestRunner.run(suite());
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?