📄 bankingtestcase1.java
字号:
package comptest.java.bankingtestcase1;
import junit.framework.Test;
import junit.framework.TestSuite;
import com.ibm.etools.comptest.java.junit.ComptestSequentialTestSuite;
import com.ibm.etools.comptest.java.junit.ComptestTestCase;
/**
* BankingTestCase 1
*
* Testcase to test the banking facade
*/
public class BankingTestCase1 extends ComptestTestCase {
/**
* Constructor for BankingTestCase1.
* @param name
*/
public BankingTestCase1(String name) {
super(name);
}
/**
* Returns the JUnit test suite implemented by this
* test class.
*/
public static Test suite() {
TestSuite testSuite =
new ComptestSequentialTestSuite(BankingTestCase1.class.getName());
testSuite.addTest(MainBlock.suite());
return testSuite;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -