package cz.crcs.ectester.common.test; /** * @param * @author Jan Jancar johny@neuromancer.sk */ public abstract class SimpleTest extends Test { protected T testable; protected TestCallback callback; public SimpleTest(T testable, TestCallback callback) { this.testable = testable; this.callback = callback; } public T getTestable() { return testable; } }