public interface Initializer
Initializer
represents the capabilities that any initializer must possess so as to let SeLion
automatically invoke it (even if the implementation resides downstream). This is used within SeLion to drive
configuration initializations via the concrete implementations of AbstractConfigInitializer
.Modifier and Type | Method and Description |
---|---|
int |
getPriority()
Denotes the priority value to sequence the initialization.
|
void |
initialize(org.testng.ITestContext context)
Triggers a project specific initialization.
|
int getPriority()
Initializer
are to be sorted in ascending order.void initialize(org.testng.ITestContext context)
context
- - a ITestContext
object that represents a <test> configuration.Copyright © 2016 PayPal Open Source. All rights reserved.