Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@

import com.avaloq.tools.ddk.test.core.AbstractStep;
import com.avaloq.tools.ddk.test.core.CompoundStep;
import com.avaloq.tools.ddk.test.core.ITestEntity;
import com.avaloq.tools.ddk.test.core.ITestEntityActionProvider;
import com.avaloq.tools.ddk.test.core.NullStep;
import com.avaloq.tools.ddk.test.core.TestEntityAction;
Expand Down Expand Up @@ -155,7 +154,7 @@ static TestPlan createUndoTestPlan(final TestPlan testPlan, final TestPlan previ
}

/**
* Returns a set containing all steps of a {@link TestPlan} that need a {@link ITestEntity} that is still available from a previous test.
* Returns a set containing all steps of a {@link TestPlan} that need a ITestEntity that is still available from a previous test.
*
* @param previousTestPlan
* the previous test plan, must not be {@code null}
Expand All @@ -171,7 +170,7 @@ static Set<AbstractStep> getAllStepsWithPreExistingTestEntities(final TestPlan p
}

/**
* Returns a set containing all steps of a {@link CompoundStep} that need a {@link ITestEntity} that is still available from a previous test.
* Returns a set containing all steps of a {@link CompoundStep} that need a ITestEntity that is still available from a previous test.
*
* @param testPlan
* the test plan, must not be {@code null}
Expand All @@ -190,11 +189,11 @@ private static Set<AbstractStep> getStepsWithPreExistingEntities(final TestPlan
}

/**
* Utility method that checks if the {@link TestPlan} contains all {@link ITestEntity}s of the given {@link ITestEntityActionProvider}.
* Utility method that checks if the {@link TestPlan} contains all ITestEntity of the given {@link ITestEntityActionProvider}.
*
* @param step
* the step, must not be {@code null}
* @return {@code true}, if this {@link TestPlan} contains all {@link ITestEntity}s
* @return {@code true}, if this {@link TestPlan} contains all ITestEntity
*/
private boolean hasAllTestEntities(final ITestEntityActionProvider step) {
boolean hasAllEntites = false;
Expand Down Expand Up @@ -342,11 +341,11 @@ private boolean isStepToUndo(final AbstractStep step) {
}

/**
* Checks if this {@link TestPlan} contains the {@link ITestEntity} of the given {@link TestEntityAction}.
* Checks if this {@link TestPlan} contains the ITestEntity of the given {@link TestEntityAction}.
*
* @param testEntityAction
* the test entity action, must not be {@code null}
* @return whether this {@link TestPlan} has {@link ITestEntity} of the given {@link TestEntityAction}
* @return whether this {@link TestPlan} has ITestEntity of the given {@link TestEntityAction}
*/
private boolean hasTestEntity(final TestEntityAction testEntityAction) {
for (TestEntityAction action : getAllTestEntityActions()) {
Expand Down
Loading