de.team33.patterns.testing.titan.Context Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testing-titan Show documentation
Show all versions of testing-titan Show documentation
Provides classes for testing purpose
The newest version!
package de.team33.patterns.testing.titan;
/**
* @deprecated use de.team33.testing.async.thebe.Context instead -
* see de.team33.testing:async-thebe
*/
@Deprecated
public class Context {
/**
* The index of the executing thread in the order of its instantiation.
*/
public final int threadIndex;
/**
* The index of the operation in the order of the actual beginning of its execution.
*/
public final int operationIndex;
/**
* The index of the operation loop within one execution;
*/
public final int loopIndex;
public Context(final int threadIndex, final int operationIndex, final int loopIndex) {
this.threadIndex = threadIndex;
this.operationIndex = operationIndex;
this.loopIndex = loopIndex;
}
}