2023-11-19 02:12:44 +03:00
|
|
|
package Visual_DVM_2021.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;
|
2023-11-16 16:20:20 +03:00
|
|
|
public abstract class TestingSystemPass<T> extends RepositoryPass<TestingServer, T> {
|
|
|
|
|
public TestingSystemPass() {
|
|
|
|
|
super(Global.testingServer);
|
|
|
|
|
}
|
|
|
|
|
@Override
|
|
|
|
|
protected int getTimeout() {
|
|
|
|
|
return 120000;
|
|
|
|
|
}
|
|
|
|
|
//----
|
|
|
|
|
}
|