GildedRose-Refactoring-Kata/Java/src/test/java/com/gildedrose/RunCucumberTest.java
2025-03-26 11:14:08 +01:00

13 lines
312 B
Java

package com.gildedrose;
import io.cucumber.junit.Cucumber;
import io.cucumber.junit.CucumberOptions;
import org.junit.runner.RunWith;
@RunWith(Cucumber.class)
@CucumberOptions(plugin = {"pretty", "html:target/cucumber-report.html"},
features = {"src/test/resources"})
public class RunCucumberTest {
}