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.ColumnFixture;
06:
07: public class ColumnFixtureTestFixture extends ColumnFixture {
08: public int input;
09:
10: public int output() {
11: return input;
12: }
13:
14: public boolean exception() throws Exception {
15: throw new Exception("I thowed up");
16: }
17: }
|