All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fitnesse.fixtures.PayCheckRecordFixture Maven / Gradle / Ivy

The newest version!
// Copyright (C) 2003-2009 by Object Mentor, Inc. All rights reserved.
// Released under the terms of the CPL Common Public License version 1.0.
package fitnesse.fixtures;

import fit.RowFixture;

public class PayCheckRecordFixture extends RowFixture {
  @Override
  public Object[] query() throws Exception {
    PayCheckRecord[] payCheckRecords = new PayCheckRecord[4];
    payCheckRecords[0] = new PayCheckRecord(1, "3/1/03", "Bob", 1000);
    payCheckRecords[1] = new PayCheckRecord(2, "3/1/03", "Bill", 2002);
    payCheckRecords[2] = new PayCheckRecord(1, "4/1/03", "Bob", 1015);
    payCheckRecords[3] = new PayCheckRecord(2, "4/1/03", "Bill", 2003);
    return payCheckRecords;
  }

  @Override
  public Class getTargetClass() {
    return PayCheckRecord.class;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy