42 lines
1.2 KiB
Java
42 lines
1.2 KiB
Java
|
|
package TestingSystem.DVM;
|
||
|
|
import Repository.Server.ServerCode;
|
||
|
|
import TestingSystem.Common.TasksPackageState;
|
||
|
|
import TestingSystem.Common.TestingPlanner;
|
||
|
|
import TestingSystem.DVM.DVMPackage.DVMPackage;
|
||
|
|
public class LocalMachineQueueSupervisor extends TestingPlanner<DVMPackage> {
|
||
|
|
@Override
|
||
|
|
protected ServerCode getActivePackagesCode() {
|
||
|
|
return ServerCode.GetFirstActiveDVMPackageForMachineURL;
|
||
|
|
}
|
||
|
|
@Override
|
||
|
|
protected ServerCode getCheckIfNeedsKillCode() {
|
||
|
|
return ServerCode.DVMPackageNeedsKill;
|
||
|
|
}
|
||
|
|
@Override
|
||
|
|
protected TasksPackageState getStateAfterStart() {
|
||
|
|
return TasksPackageState.CompilationWorkspacesCreation;
|
||
|
|
}
|
||
|
|
@Override
|
||
|
|
protected void TestsSynchronize() throws Exception {
|
||
|
|
}
|
||
|
|
@Override
|
||
|
|
protected void PackageWorkspaceCreation() throws Exception {
|
||
|
|
}
|
||
|
|
@Override
|
||
|
|
protected void AnalyseResults() throws Exception {
|
||
|
|
}
|
||
|
|
@Override
|
||
|
|
protected void PackageStart() throws Exception {
|
||
|
|
}
|
||
|
|
@Override
|
||
|
|
protected boolean CheckNextState() throws Exception {
|
||
|
|
return false;
|
||
|
|
}
|
||
|
|
@Override
|
||
|
|
protected void DownloadResults() throws Exception {
|
||
|
|
}
|
||
|
|
@Override
|
||
|
|
protected void Kill() throws Exception {
|
||
|
|
}
|
||
|
|
}
|