mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-04 09:11:39 +00:00
13 lines
312 B
Java
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 {
|
|
}
|
|
|