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
The newest version!
package com.tngtech.jgiven.tests;
import com.tngtech.jgiven.testng.ScenarioTestListener;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.extension.ExtendWith;
import org.testng.annotations.Listeners;
@Listeners( ScenarioTestListener.class )
@ExtendWith(JGivenReportExtractingExtension.class)
public class TestClassWithOnlyIgnoredTests extends ScenarioTestForTesting {
@Ignore
@Test
@org.junit.jupiter.api.Test
@Disabled
@org.testng.annotations.Test( enabled = false )
public void test() {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy