org.commonmark.testutil.SpecTestCase Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commonmark-test-util Show documentation
Show all versions of commonmark-test-util Show documentation
commonmark-java classes for tests
package org.commonmark.testutil;
import org.commonmark.testutil.example.Example;
import org.commonmark.testutil.example.ExampleReader;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import org.junit.runners.Parameterized.Parameters;
import java.util.ArrayList;
import java.util.List;
@RunWith(Parameterized.class)
public abstract class SpecTestCase extends RenderingTestCase {
protected final Example example;
public SpecTestCase(Example example) {
this.example = example;
}
@Parameters(name = "{0}")
public static List