Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Robolectric-Gradle プラグインを使用して単一のテストを実行することは可能ですか?
私はこれで試しました:
./gradlew test -Dtest.single=testName
しかし、それは機能していません。
自分も同じ間違いをしました。これが jcandksolutions プラグインのフォーマットです (少なくとも私が使っていたのはこれです)。-Dtest.single=<test name>RoboE-Gradle プラグインではサポートされていません。
-Dtest.single=<test name>
--tests <test class name>メカニズムを使用します。--tests <classpath of test>これは、またはワイルドカードを使用できます--tests *.*Test
--tests <test class name>
--tests <classpath of test>
--tests *.*Test