re base code
[sdc.git] / test-apis-ci / src / test / java / org / openecomp / sdc / cucumber / runners / RunTenantIsolationCucumberCI.java
1 package org.openecomp.sdc.cucumber.runners;
2
3 import cucumber.api.CucumberOptions;
4 import cucumber.api.junit.Cucumber;
5 import org.junit.AfterClass;
6 import org.junit.BeforeClass;
7 import org.junit.runner.RunWith;
8 import org.openecomp.sdc.conf.TestAPIConfDependentTest;
9
10 @RunWith(Cucumber.class)
11 @CucumberOptions(features = "classpath:cucumber/tenantIsolation.feature", glue = "org.openecomp.sdc.cucumber.steps")
12
13 public class RunTenantIsolationCucumberCI extends TestAPIConfDependentTest {
14
15         @BeforeClass
16         public static void beforeClass() {
17         }
18
19         @AfterClass
20         public static void afterClassJUnit() {
21         }
22
23         @org.testng.annotations.BeforeClass
24         public static void beforeClassTestNg() {
25         }
26
27         @org.testng.annotations.AfterClass
28         public static void afterClassTestNG() {
29         }
30 }