Files
VisualSapfor/src/Visual_DVM_2021/Passes/All/PublishTestProject.java

17 lines
546 B
Java
Raw Normal View History

2023-11-17 00:04:21 +03:00
package Visual_DVM_2021.Passes.All;
import ProjectData.Project.db_project_info;
import TestingSystem.Common.Test.Test;
import Visual_DVM_2021.Passes.Server.TestingSystemPass;
public class PublishTestProject extends TestingSystemPass<Test> {
protected db_project_info project = null;
@Override
protected boolean canStart(Object... args) throws Exception {
target = (Test) args[0];
project= (db_project_info) args[1];
return true;
}
@Override
protected void ServerAction() throws Exception {
}
}