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

fitnesse.slim.test.TestSlimInterface Maven / Gradle / Ivy

The newest version!
package fitnesse.slim.test;

import java.util.Date;
import java.util.List;

public interface TestSlimInterface {

  boolean niladWasCalled();

  String getStringArg();

  int getIntArg();

  double getDoubleArg();

  List getListArg();

  Date getDateArg();

  Zork getZork();

  Integer getIntegerObjectArg();

  double getDoubleObjectArg();

  char getCharArg();

}