_@AfterClass

Description

  • A method annotated with @AfterClass will not be executed until all tests in the ETLUnit test class have completed.  Available to this method are functions that may be used in a test method.

Attributes

Attribute

Name

Required?

Possible

Values

Info
NONE  No attributes

Location in the test class file

Before a method declaration

Examples

 

@AfterClass Example

@AfterClass

afterClass(){

log(

message: 'After Class Message',

log-file-name: 'afterClass.log',

log-classifier: 'abc'

);

}


Â