fitnesse.slim.test.library.LibraryInSetUp Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fitnesse Show documentation
Show all versions of fitnesse Show documentation
The fully integrated standalone wiki, and acceptance testing framework.
package fitnesse.slim.test.library;
public class LibraryInSetUp {
private boolean echoCalled;
public void echo() {
this.echoCalled = true;
}
public boolean echoInSetUpLibraryCalled() {
return echoCalled;
}
}