Type mismatch: cannot convert from Test to Annotation

在用TestNG进行测试时,遇到了这样的问题,Type mismatch: cannot convert from Test to Annotation

经过思考,原来是由于所测试的类名也用了Test,而在使用@Test时,就会报上述的错误,建议将测试类的名字重命名,即可解决此问题。


你可能感兴趣的:(TestNG)