01: // Modified or written by Object Mentor, Inc. for inclusion with FitNesse.
02: // Copyright (c) 2002 Cunningham & Cunningham, Inc.
03: // Released under the terms of the GNU General Public License version 2 or later.
04: package fit;
05:
06: public class ImportFixture extends Fixture {
07: public void doRow(Parse row) {
08: String packageName = row.parts.text();
09: FixtureLoader.instance().addPackageToPath(packageName);
10: }
11: }
|