Package fit.decorator

Source Code of fit.decorator.TestFixture

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

  public void doTable(Parse table) {
    super.summary.put(TABLE_CONTENTS, new Table(table).toString());
  }
}
TOP

Related Classes of fit.decorator.TestFixture

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.