只需添加一些Junit4测试用例,
import static org.junit.Assert.*;
但是在我改为之前它会提示一些错误
来自@org.junit.Test
@Test
如果我想使用@Test
,我该怎么办?
答案 0 :(得分:2)
你还需要
import org.junit.Test;
答案 1 :(得分:0)
Test
不属于org.junit.Assert
。它是org.junit
的一部分。
所以它应该足够了:
import org.junit.Test;
答案 2 :(得分:0)
答案 3 :(得分:0)
如果在testng ie @Test
包中的代码中定义了org.testng.annotations.Test
注释,那么为了定义junT的@Test注释,除非删除import语句,否则必须编写@org.junit.Test
testng包org.testng.annotations.Test