убрал возможность задавать тип машины как кластера

This commit is contained in:
2025-02-10 16:14:48 +03:00
parent bc750f8db0
commit 7eecdf8f4d
8 changed files with 41 additions and 15 deletions

View File

@@ -1,8 +1,11 @@
package _VisualDVM.Passes.All;
import Common.Passes.Pass;
import Common.Visual.UI;
import _VisualDVM.Global;
import _VisualDVM.TestingSystem.SAPFOR.SapforPackage.SapforPackage;
public class TestPass extends Pass {
import _VisualDVM.Passes.Server.TestingServerPass;
import _VisualDVM.Repository.Server.ServerCode;
import _VisualDVM.TestingSystem.Common.Test.Test;
public class TestPass extends TestingServerPass {
/*
LinkedHashMap<Integer,SapforConfiguration> unpackConfigurationsOld(SapforPackage sapforPackage){
LinkedHashMap<Integer,SapforConfiguration> res = new LinkedHashMap<>();
@@ -27,7 +30,13 @@ public class TestPass extends Pass {
*/
@Override
protected void body() throws Exception {
for (SapforPackage sapforPackage : Global.testingServer.db.sapforPackages.Data.values()) {
}
if (!SendRequest(ServerCode.TestCode));
/*
for (Test test: Global.testingServer.db.tests.Data.values()){
if (!SendRequest(ServerCode.DownloadTest, String.valueOf(test.id))){
UI.Info(String.valueOf(test.id));
};
}
*/
}
}