欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

只运行部分testcase

程序员文章站 2022-04-19 23:10:04
...
package com.ff.ldap;

import junit.framework.TestCase;
import junit.framework.TestSuite;

public class LdapUtilTests extends TestCase {
public LdapUtilTests(String name) {
super(name);
}

public void testTrue() {
int i = LdapUtil.authenticate("info", "info");
assertTrue(i == 0);
}

public void testUserNameError() {
int i = LdapUtil.authenticate("wangsifa", "wangsf");
assertTrue(i == 5);
}

public void testPasswordError() {
int i = LdapUtil.authenticate("wangsifa", "wangsf");
assertTrue(i == 10);
}

public void testInfo() {
int i = LdapUtil.authenticate("info", "info");
if (i == 0) {
System.out.println("0正确访问");
} else if (i == 5) {
System.out.println("5用户不存在");
} else {
System.out.println("10:密码不正确");
}
}

public static TestSuite suite() {
TestSuite suite = new TestSuite();
suite.addTest(new LdapUtilTests("testInfo"));
return suite;
}

}

最后一个方法可实现只运行本测试案例中的部分.
相关标签: junit