01: package fit.decorator;
02:
03: import fit.Fixture;
04: import fit.Parse;
05: import fit.decorator.util.Table;
06:
07: public class TestFixture extends Fixture {
08: public static final String TABLE_CONTENTS = "tableContents";
09:
10: public TestFixture() {
11: super .summary.put(FixtureDecorator.ENCAPSULATED_FIXTURE_NAME,
12: TestFixture.class.getName());
13: }
14:
15: public void doTable(Parse table) {
16: super .summary.put(TABLE_CONTENTS, new Table(table).toString());
17: }
18: }
|