fitnesse.slim.Library 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;
public class Library {
public final String instanceName;
public final Object instance;
public Library(String instanceName, Object instance) {
this.instanceName = instanceName;
this.instance = instance;
}
}