Sync Integ to Master
[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 org.junit.AfterClass;
4 import org.junit.BeforeClass;
5 import org.junit.runner.RunWith;
6 import org.openecomp.sdc.conf.TestAPIConfDependentTest;
7
8 import cucumber.api.CucumberOptions;
9 import cucumber.api.junit.Cucumber;
10
11 @RunWith(Cucumber.class)
12 @CucumberOptions(features = "classpath:cucumber/tenantIsolation.feature", glue = "org.openecomp.sdc.cucumber.steps")
13
14 public class RunTenantIsolationCucumberCI extends TestAPIConfDependentTest {
15
16         @BeforeClass
17         public static void beforeClass() {
18         }
19
20         @AfterClass
21         public static void afterClassJUnit() {
22         }
23
24         @org.testng.annotations.BeforeClass
25         public static void beforeClassTestNg() {
26         }
27
28         @org.testng.annotations.AfterClass
29         public static void afterClassTestNG() {
30         }
31 }