org.testinium.annotations
Annotation Type Configuration


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

Used to annotate classes

Version:
1.0
Author:
Thierry Janaudy janaudy@testinium.org

Optional Element Summary
 java.lang.Class nodesGraphProcessor
          nodesGraphProcessor
 int numberOfThreads
          Number of threads in the pool
 boolean parallel
          Should the methods be run in parallel mode or not?
 java.lang.Class[] reporters
          reporters
 

parallel

public abstract boolean parallel
Should the methods be run in parallel mode or not?

Returns:
false by default
Default:
false

numberOfThreads

public abstract int numberOfThreads
Number of threads in the pool

Returns:
1 by default
Default:
1

reporters

public abstract java.lang.Class[] reporters
reporters

Returns:
a set of reporters used to generate reports
Default:
{org.testinium.reporter.ConsoleReporter.class, org.testinium.reporter.HTMLReporter.class}

nodesGraphProcessor

public abstract java.lang.Class nodesGraphProcessor
nodesGraphProcessor

Returns:
DFS.class by default
Default:
org.testinium.graph.DFS.class