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: /**
06: * This "fixture" intentionally does not extend a Fixture class.
07: *
08: * @author jbrains
09: *
10: * @see HandleFixtureDoesNotExtendFixtureTest
11: */
12: public class WouldBeFixture {
13: public String go() {
14: return "OK!";
15: }
16: }
|