mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-06-10 02:38:30 +00:00
12 lines
214 B
Java
12 lines
214 B
Java
package com.gildedrose;
|
|
|
|
import io.cucumber.junit.Cucumber;
|
|
import io.cucumber.junit.CucumberOptions;
|
|
import org.junit.runner.RunWith;
|
|
|
|
@RunWith(Cucumber.class)
|
|
@CucumberOptions()
|
|
public class RunCucumberTest {
|
|
}
|
|
|