package org.argeo.slc.test; import org.argeo.slc.deploy.DeployedSystem; /** The actual run of a test */ public interface TestRun { /** Gets UUID */ public String getUuid(); /** Gets the related test definition. */ public T getTestDefinition(); /** Gets the related test data */ public T getTestData(); /** Gets the related deployed system. */ public T getDeployedSystem(); /** Gets the related result where to record results. */ public T getTestResult(); }