no message

This commit is contained in:
2023-11-17 00:04:21 +03:00
parent 1ff88fc5fb
commit beb1359544
132 changed files with 617 additions and 591 deletions

View File

@@ -0,0 +1,16 @@
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 {
}
}