![JAR search and dependency download from the Maven repository](/logo.png)
com.tngtech.jgiven.junit.SimpleScenarioTest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jgiven-junit Show documentation
Show all versions of jgiven-junit Show documentation
Module for writing JGiven tests with JUnit
package com.tngtech.jgiven.junit;
import org.junit.ClassRule;
import org.junit.Rule;
import com.tngtech.jgiven.base.SimpleScenarioTestBase;
public class SimpleScenarioTest extends SimpleScenarioTestBase {
@ClassRule
public static final ScenarioReportRule writerRule = new ScenarioReportRule();
@Rule
public final ScenarioExecutionRule scenarioRule = new ScenarioExecutionRule( writerRule, this, getScenario() );
}