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 fit;
04:
05: public class ImportFixture extends Fixture {
06: public void doRow(Parse row) {
07: String packageName = row.parts.text();
08: FixtureLoader.instance().addPackageToPath(packageName);
09: }
10: }
|