2024-10-14 12:14:01 +03:00
|
|
|
package _VisualDVM.Passes.Server;
|
2024-10-07 00:58:29 +03:00
|
|
|
import _VisualDVM.Global;
|
2024-10-09 22:21:57 +03:00
|
|
|
import _VisualDVM.TestingSystem.Common.TestingServer;
|
2025-02-04 16:24:32 +03:00
|
|
|
public abstract class TestingSystemPass_OLD<T> extends RepositoryPass<TestingServer, T> {
|
|
|
|
|
public TestingSystemPass_OLD() {
|
2023-11-16 16:20:20 +03:00
|
|
|
super(Global.testingServer);
|
|
|
|
|
}
|
|
|
|
|
@Override
|
|
|
|
|
protected int getTimeout() {
|
|
|
|
|
return 120000;
|
|
|
|
|
}
|
|
|
|
|
//----
|
|
|
|
|
}
|