次のようにGroovyでCucumberテストを行っています
import org.junit.runner.RunWith
import cucumber.junit.Cucumber
import cucumber.junit.Cucumber.Options
@RunWith(Cucumber.class)
@Options(features = ["classpath:CarDrive.feature"])
public class FuelCarTest {
}
import cucumber.annotation.en.Given
import cucumber.annotation.en.Then
import cucumber.annotation.en.When
public class FuelCarSteps {
public FuelCarSteps() {
println "FuelCarSteps::FuelCarSteps"
}
@Given("I have a car")
def givenCar() {
println "I have a car"
}
@When("^you fill it with 50 litres of fuel")
def addFuel() {
println "add fuel"
}
@Then("^the tank contains 60 litres")
def checkBalance() {
println "TODO: add check here"
}
}
mvn test を使用してテストを正常に実行できますが、Eclipse で実行しようとすると、
No JUnit tests found
クリーニング、再構築、再起動を試みました