aboutsummaryrefslogtreecommitdiffstats
path: root/test-apis-ci/src/test/java/org/openecomp/sdc/cucumber/runners/RunTenantIsolationCucumberCI.java
blob: e2d324bae363d4b6775493ff91d8f0cba828b591 (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
package org.openecomp.sdc.cucumber.runners;

import cucumber.api.CucumberOptions;
import cucumber.api.junit.Cucumber;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.runner.RunWith;
import org.openecomp.sdc.conf.TestAPIConfDependentTest;

@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() {
	}
}