首页 > 代码库 > Junit的套件使用

Junit的套件使用

定义一个类,在类的上方添加@RunWith(Suite.class)和@SuiteClasses({XX.class,YY.class,...})

实例
有两个类分别为:
public class Login{
@Before
public void setUp() throws Exception{
......
}

@Test
public void test(){
......
}

@After
public void tearDown() throws Exception{
......
}
}


public class Logout{
@Before
public void setUp() throws Exception{
......
}

@Test
public void test(){
......
}

@After
public void tearDown() throws Exception{
......
}
}
想要同时运行这两个Junit测试用例,则可以如下
@RunWith(Suite.class)
@SuiteClasses({
  Login.class,//登录
  Logout.class//登出
})
public class Control{
  @test
  public void execute(){
//内容可以为空。
}
}

Junit的套件使用