Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit 12b4d765 authored by rui rodrigues's avatar rui rodrigues
Browse files

add test runners according the projects

parent 1610fe0b
No related branches found
No related tags found
No related merge requests found
package testRunner;
package testRunner.simplLabs;
import io.cucumber.junit.Cucumber;
import io.cucumber.junit.CucumberOptions;
......@@ -6,11 +6,11 @@ import org.junit.runner.RunWith;
@RunWith(Cucumber.class)
@CucumberOptions(
features = "src/test/java/features/api",
glue = {"stepDefinitions/api", "framework/api"},
features = "src/test/java/features/ui/simplLabs",
glue = {"stepDefinitions/ui/simplLabs", "framework/ui"},
plugin = {"pretty", "json:target/cucumber-reports/cucumber.json"},
monochrome = true
)
public class ApiRunnerTest {
public class UiSimplLabsRunner {
}
package testRunner.simplOpen;
import io.cucumber.junit.Cucumber;
import io.cucumber.junit.CucumberOptions;
import org.junit.runner.RunWith;
@RunWith(Cucumber.class)
@CucumberOptions(
features = "src/test/java/features/api/simplOpen",
glue = {"stepDefinitions/api/simplOpen", "framework/api"},
plugin = {"pretty", "json:target/cucumber-reports/cucumber.json"},
monochrome = true
)
public class ApiSimplOpenRunner {
}
package testRunner;
package testRunner.simplOpen;
import io.cucumber.junit.Cucumber;
import io.cucumber.junit.CucumberOptions;
......@@ -6,11 +6,11 @@ import org.junit.runner.RunWith;
@RunWith(Cucumber.class)
@CucumberOptions(
features = "src/test/java/features/ui",
glue = {"stepDefinitions/ui", "framework/ui"},
features = "src/test/java/features/ui/simplOpen",
glue = {"stepDefinitions/ui/simplOpen", "framework/ui"},
plugin = {"pretty", "json:target/cucumber-reports/cucumber.json"},
monochrome = true
)
public class UiRunnerTest {
public class UiSimplOpenRunner {
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment