17 lines
546 B
Java
17 lines
546 B
Java
|
|
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 {
|
||
|
|
}
|
||
|
|
}
|