public class CompositeBuildMutator extends java.lang.Object implements BuildMutator
NOOP| Constructor and Description |
|---|
CompositeBuildMutator(java.util.List<BuildMutator> mutators) |
| Modifier and Type | Method and Description |
|---|---|
void |
afterBuild(BuildContext context,
java.lang.Throwable error)
Runs after each iteration of the build has finished.
|
void |
afterCleanup(BuildContext context,
java.lang.Throwable error)
Runs after each iteration of cleanup has finished.
|
void |
afterScenario(ScenarioContext context)
Runs after the last iteration of the scenario has finished.
|
void |
beforeBuild(BuildContext context)
Runs before starting an iteration of the build, after any potential cleanup has finished.
|
void |
beforeCleanup(BuildContext context)
Runs before each iteration if cleanup tasks are declared.
|
void |
beforeScenario(ScenarioContext context)
Runs before the first iteration of the scenario.
|
java.lang.String |
toString() |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitvalidatepublic CompositeBuildMutator(java.util.List<BuildMutator> mutators)
public void beforeScenario(ScenarioContext context)
BuildMutatorbeforeScenario in interface BuildMutatorpublic void beforeCleanup(BuildContext context)
BuildMutatorbeforeCleanup in interface BuildMutatorpublic void afterCleanup(BuildContext context, java.lang.Throwable error)
BuildMutatorafterCleanup in interface BuildMutatorpublic void beforeBuild(BuildContext context)
BuildMutatorbeforeBuild in interface BuildMutatorpublic void afterBuild(BuildContext context, java.lang.Throwable error)
BuildMutatorafterBuild in interface BuildMutatorpublic void afterScenario(ScenarioContext context)
BuildMutatorafterScenario in interface BuildMutatorpublic java.lang.String toString()
toString in class java.lang.Object