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 eg.employeePayroll;
04:
05: import fit.RowFixture;
06: import eg.employeePayroll.PayCheck;
07:
08: public class PaycheckInspector extends RowFixture {
09: public Object[] query() throws Exception // get rows to be compared
10: {
11: return new Object[0];
12: }
13:
14: public Class getTargetClass() // get expected type of row
15: {
16: return PayCheck.class;
17: }
18: }
|