aboutsummaryrefslogtreecommitdiffstats
path: root/test-apis-ci/src/test/java/org/openecomp/sdc/cucumber/runners/RunTenantIsolationCucumberCI.java
blob: d9183fc5c4b233dff953269c3bc8280e99a4511c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package org.openecomp.sdc.cucumber.runners;

import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.runner.RunWith;
import org.openecomp.sdc.conf.TestAPIConfDependentTest;

import cucumber.api.CucumberOptions;
import cucumber.api.junit.Cucumber;

@RunWith(Cucumber.class)
@CucumberOptions(features = "classpath:cucumber/tenantIsolation.feature", glue = "org.openecomp.sdc.cucumber.steps")

public class RunTenantIsolationCucumberCI extends TestAPIConfDependentTest {

	@BeforeClass
	public static void beforeClass() {
	}

	@AfterClass
	public static void afterClassJUnit() {
	}

	@org.testng.annotations.BeforeClass
	public static void beforeClassTestNg() {
	}

	@org.testng.annotations.AfterClass
	public static void afterClassTestNG() {
	}
}