2014-10-16 102 views

回答

0

您可以在要跳過的測試上面添加@Ignore

-1

使用在Build.gradle(Module:app)下面的代碼:

android { 

testOptions { 
    unitTests.all { 
     setIgnoreFailures(true) 
    } 
} 

buildTypes { 
    debug { 
     testCoverageEnabled true 
     } 
    } 
} 
+0

這將是更好的解說一點點添加到這個答案,解釋它是如何回答的問題是,什麼副作用有可能是。例如,'setIgnoreFailures(true)'只適用於覆蓋率報告,還是意味着即使構建失敗,構建也會被視爲成功? – DaveyDaveDave 2017-08-11 06:34:33

相關問題