org.rhq.test.arquillian
Annotation Type ServerServicesSetup


@Retention(value=RUNTIME)
@Target(value=METHOD)
public @interface ServerServicesSetup

Methods annotated with this annotation will have a chance to interact with the configured server services implementation right after it has been instantiated, before it is passed to the plugin container's configuration.

Author:
Lukas Krejci

Optional Element Summary
 int order
          If order of the @ServerServicesSetup methods is significant, you can order them by using this parameter.
 String[] testMethods
          This list of test methods the method annotated with this annotation applies to.
 

testMethods

public abstract String[] testMethods
This list of test methods the method annotated with this annotation applies to.

By default the @ServerServicesSetup method applies to all test methods.

Default:
{}

order

public abstract int order
If order of the @ServerServicesSetup methods is significant, you can order them by using this parameter.

Zero or negative value means no significant order required.

Default:
0


Copyright © 2008-2012 Red Hat, Inc.. All Rights Reserved.