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

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

There is a newer version: 20240707
Show newest version
package fitnesse.slim.test;

import fitnesse.slim.SystemUnderTest;

public class MySystemUnderTestDriver {

  @SystemUnderTest
  public MySystemUnderTest systemUnderTest = new MySystemUnderTest();

  private boolean called;

  public void foo() {
    called = true;
  }

  public boolean driverCalled() {
    return called;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy