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.Fixture;
06:
07: public class ActionFixtureTestFixture extends Fixture {
08: public void duplicateMethod(int i) {
09: }
10:
11: public void duplicateMethod(double d) {
12: }
13:
14: public void realMethod() {
15: }
16:
17: public void someField(int i) {
18: }
19:
20: public int realCheck() {
21: return 0;
22: }
23:
24: public void voidCheck() {
25: }
26: }
|