com.tngtech.jgiven.tests.TestClassWithOnlyIgnoredTests Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jgiven-tests Show documentation
Show all versions of jgiven-tests Show documentation
JGiven Tests - Contains BDD tests for JGiven written in JGiven
package com.tngtech.jgiven.tests;
import org.junit.Ignore;
import org.junit.Test;
import org.testng.annotations.Listeners;
import com.tngtech.jgiven.junit.ScenarioTest;
import com.tngtech.jgiven.testng.ScenarioTestListener;
@Listeners( ScenarioTestListener.class )
public class TestClassWithOnlyIgnoredTests extends ScenarioTestForTesting {
@Ignore
@Test
@org.testng.annotations.Test( enabled = false )
public void test() {
}
}