@BeforeTest
ETLUnit 3.9.6
Description
- A method annotated with
@BeforeTest
will be executed before each "test" method. That is, before each method annotated with@Test
, the method annotated with@BeforeTest
will run.
Attributes
Attribute Name | Required? | Possible Values | Info |
---|---|---|---|
NONE | Yes | No attributes. |
Location in the test class file
Before a method declaration.
Examples
Panel Title
@BeforeTest
configureOutputFile() {
set(
variable: 'outputfile1',
value: 'exp_qpt_data_format_tgt'
);
}