junit中test用法

  

Test注解
有两个值, expected, timeout
expect后面接异常类, timtout后面接时间, 符合则为ture

@Test (expected = NullPointException)
public void testNull() {
  String s = null;
  s.length();
}

@Test (timeOut = 1000)
public void testTimeOut() {
  while(true) {

  }
}

posted @ 2019-07-16 21:47  just_code  阅读(1588)  评论(0编辑  收藏  举报