use of io.pravega.test.system.framework.Environment in project pravega by pravega.
the class PravegaTest method initialize.
/**
* This is used to setup the various services required by the system test framework.
*/
@Environment
public static void initialize() {
URI zkUri = startZookeeperInstance();
startBookkeeperInstances(zkUri);
URI controllerUri = ensureControllerRunning(zkUri);
ensureSegmentStoreRunning(zkUri, controllerUri);
}
use of io.pravega.test.system.framework.Environment in project pravega by pravega.
the class BookieFailoverTest method initialize.
/**
* This is used to setup the various services required by the system test framework.
*
* @throws MarathonException when error in setup
*/
@Environment
public static void initialize() throws MarathonException {
URI zkUri = startZookeeperInstance();
startBookkeeperInstances(zkUri);
URI controllerUri = ensureControllerRunning(zkUri);
ensureSegmentStoreRunning(zkUri, controllerUri);
}
use of io.pravega.test.system.framework.Environment in project pravega by pravega.
the class ByteClientTest method initialize.
/**
* This is used to setup the services required by the system test framework.
*
* @throws MarathonException When error in setup.
*/
@Environment
public static void initialize() throws MarathonException {
URI zkUri = startZookeeperInstance();
startBookkeeperInstances(zkUri);
URI controllerUri = ensureControllerRunning(zkUri);
ensureSegmentStoreRunning(zkUri, controllerUri);
}
use of io.pravega.test.system.framework.Environment in project pravega by pravega.
the class DynamicRestApiTest method initialize.
/**
* This is used to setup the various services required by the system test framework.
*/
@Environment
public static void initialize() {
URI zkUri = startZookeeperInstance();
startBookkeeperInstances(zkUri);
URI controllerUri = ensureControllerRunning(zkUri);
ensureSegmentStoreRunning(zkUri, controllerUri);
}
use of io.pravega.test.system.framework.Environment in project pravega by pravega.
the class LargeEventTest method initialize.
/**
* This is used to setup the various services required by the system test framework.
*/
@Environment
public static void initialize() {
URI zkUri = startZookeeperInstance();
startBookkeeperInstances(zkUri);
URI controllerUri = ensureControllerRunning(zkUri);
ensureSegmentStoreRunning(zkUri, controllerUri);
}
Aggregations