01: // Copyright (C) 2003,2004,2005 by Object Mentor, Inc. All rights reserved.
02: // Released under the terms of the GNU General Public License version 2 or later.
03: package fitnesse.fixtures;
04:
05: import fit.*;
06: import fitnesse.html.HtmlUtil;
07:
08: public class ClasspathPrintingFixture extends Fixture {
09: public void doTable(Parse table) {
10: table.parts.parts.addToBody(HtmlUtil.BR + "classpath: "
11: + System.getProperty("java.class.path"));
12: }
13: }
|