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 ComplexAddFixture extends ColumnFixture {
08: public int[] a;
09:
10: public int[] b;
11:
12: public int[] sum() {
13: return new int[] { a[0] + b[0], a[1] + b[1] };
14: }
15: }
|