com.tngtech.jgiven.junit5.SimpleScenarioTest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jgiven-junit5 Show documentation
Show all versions of jgiven-junit5 Show documentation
Module for writing JGiven tests with JUnit 5
package com.tngtech.jgiven.junit5;
import com.tngtech.jgiven.base.SimpleScenarioTestBase;
import org.junit.jupiter.api.extension.ExtendWith;
import com.tngtech.jgiven.base.ScenarioTestBase;
import com.tngtech.jgiven.impl.Scenario;
@ExtendWith( JGivenExtension.class )
public class SimpleScenarioTest extends SimpleScenarioTestBase {
private Scenario scenario = createScenario();
@Override
public Scenario getScenario() {
return scenario;
}
}