如何为Android Instrumented测试设置TestNG

时间:2018-11-05 01:49:46

标签: android testing testng

我已经在应用程序的build.gradle文件中添加了

  

testImplementation组:“ org.testng”,名称:“ testng”,版本:“ 6.14.3”

在我的依赖项中并运行同步。并且我已经注释掉了junit依赖。但是仍然我的instrumentedTest类仍在使用Junit,并且我无法导入testng

在同一文件中,我也尝试添加

  

test {useTestNG()}

但这给了我一个错误:method test is not found in gradle 我尝试添加相同的文件

  

应用插件:“ java”

但这给了我另一个错误: android应用程序不兼容

我可以在我的intrumentedtest类中使用testng作为测试框架吗?看起来我可以,我只是不能正确设置。

0 个答案:

没有答案