org.testng.annotations
Annotation Type Listeners


@Retention(value=RUNTIME)
@Target(value=TYPE)
public @interface Listeners

This annotation lets you define listeners directly on a test class instead of doing so in your testng.xml. Any class that implements the interface ITestNGListener is allowed, except IAnnotationTransformer and IAnnotationTransformer2, which need to be defined in XML since they have to be known before we even start looking for annotations.

Author:
Cedric Beust, Mar 26, 2010

Optional Element Summary
 Class<? extends ITestNGListener>[] value
           
 

value

public abstract Class<? extends ITestNGListener>[] value
Default:
{}


Copyright © 2011. All Rights Reserved.