-
1.测试方法上必须使用@Test进行修饰 2.测试方法必须使用public void 进行修饰,不能带任何的参数 3.新建一个源代码目录来存放我们的测试代码 4.测试类的包应该和被测试类保持一致 5.测试单元中的每个方法必须可以独立测试,测试方法间不能有任何的依赖 6.测试类使用Test作为类名的后缀(不是必须) 7.测试方法使用test作为方法名的前缀(不是必须)查看全部
-
@RunWith(Parameterized.class) public class ParameterTest { /* * 1.更改默认的测试运行器为RunWith(Parameterized.class) * 2.声明变量来存放预期值 和结果值 * 3.声明一个返回值 为Collection的公共静态方法,并使用@Parameters进行修饰 * 4.为测试类声明一个带有参数的公共构造函数,并在其中为之声明变量赋值 */ int expected =0; int input1 = 0; int input2 = 0; @Parameters public static Collection<Object[]> t() { return Arrays.asList(new Object[][]{ {3,1,2}, {4,2,2} }) ; } public ParameterTest(int expected,int input1,int input2) { this.expected = expected; this.input1 = input1; this.input2 = input2; } @Test public void testAdd() { assertEquals(expected, new Calculate().add(input1, input2)); } }查看全部
-
1.测试套件就是组织测试类一起运行的 写一个作为测试套件的入口类,这个类里不包含其他的方法 更改测试运行Suite.class 将要测试的类作为数组传入到Suite.SuiteClasses({})查看全部
-
学习中,讲的不错~查看全部
-
@Test(expected=XX.clss) @Text(timeout=??)查看全部
-
@RunWith(Parameterized.class)查看全部
-
@RunWith(Suite.class) @Suite.SuiteClasses({AaaTest.class, BbbTest.class, CccTest.class})查看全部
-
junit的各种注解和参数。 @Test, @BeforeClass, @Before, @AfterClass, @After, @Ignore("mesage"), @RunWith @Test(excepted=xx.class) @Test(timeout=3000)查看全部
-
单元测试规范查看全部
-
感谢Eleven_Lee老师查看全部
-
Spring与Hibernate的整合测试 1,添加spring,hibernate,MySQL等jar包 2,添加spring配置文件,hibernate配置文件 3,@BeforeClass获得spring的配置文件ClassPathXmlApplicationContext("配置文件") 4,测试通过getBean获得spring管理的bean是否成功。查看全部
-
Juint带参数和返回值的测试 @RunWith(Parameterized.class) //参数化测试运行器 声明变量存放预期值和结果值 声明一个Arraylist返回值为Collection的公共静态方法,并使用@Parameters进行修饰 为测试类声明一个带有参数的公共构造函数,并在其中为之声明变量赋值查看全部
-
@RunWith(Suite.class) //将测试类改为测试套件类 @Suite.Suite.class({TaskTest1,TaskTest2...}) //用数组的形式将测试的类添加到测试套件中 public classSuiteTest{ //要用public修饰,套件测试类要为空。不能有方法。 }查看全部
-
@Test:将一个普通的方法修饰成为一个测试方法 @Test(expected=XX.class) :捕获处理异常,运行单元测试就不会报错。 @Test(timeout=毫秒 ) :用于测试如死循环等 @BeforeClass:它会在所有的方法运行前被执行,static修饰 @AfterClass:它会在所有的方法运行结束后被执行,static修饰 @Before:会在每一个测试方法被运行前执行一次 @After:会在每一个测试方法运行后被执行一次 @Ignore:所修饰的测试方法会被测试运行器忽略 @RunWith:可以更改测试运行器 org.junit.runner.Runner查看全部
-
junit的运行过程 @BeforeClass 测试加载后就会运行,内存中只实例化一次,用在:加载配置文件 @Befor @Test1 @After @Befor @Test2 @After @AfterClass 通常用于资源的清理(如:对象释放,关闭数据库连接)查看全部
举报
0/150
提交
取消