fit.decorator.TestFixture Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fitnesse Show documentation
Show all versions of fitnesse Show documentation
The fully integrated standalone wiki, and acceptance testing framework.
package fit.decorator;
import fit.Fixture;
import fit.Parse;
import fit.decorator.util.Table;
public class TestFixture extends Fixture {
public static final String TABLE_CONTENTS = "tableContents";
public TestFixture() {
super.summary.put(FixtureDecorator.ENCAPSULATED_FIXTURE_NAME, TestFixture.class.getName());
}
@Override
public void doTable(Parse table) {
super.summary.put(TABLE_CONTENTS, new Table(table).toString());
}
}