All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fit.decorator.TestFixture Maven / Gradle / Ivy

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());
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy