stanfy / spoon-gradle-plugin

Gradle plugin for Spoon.
Apache License 2.0
353 stars 79 forks source link

Running multiple test classes using Spoon #65

Open garatadi opened 9 years ago

garatadi commented 9 years ago

Is there a command which can trigger multiple test class files?

Eg: gradle spoon -PspoonClassName=class1,class2 ?????

roman-mazur commented 9 years ago

This plugin relies on SpoonRunner capabilities in Square Spoon project. This runner does provide API to set multiple classes. Hence, to fix this we have to submit a change to the spoon project to use RemoteAndroidTestRunner.setClassNames API and then adapt this plugin to new SpoonRunner API.

KaurManjot commented 7 years ago

Is this fixed? Any plans when this will be done? Is the any other way we can run multiple tests using gradle?

garatadi commented 7 years ago

We are using the following command to run multiple clases

./gradlew -PspoonClassName=class1,class2,class3 spoonDebugAndroidTest