qa.tools.ikeeper.action.Fail Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of issue-keeper-junit Show documentation
Show all versions of issue-keeper-junit Show documentation
Issue keeper is a tracking tool which makes the tests skipped in advance when they are blocked by the open issues.
package qa.tools.ikeeper.action;
import org.junit.Assert;
import qa.tools.ikeeper.IssueDetails;
public class Fail implements IAction {
@Override
public void perform(String testName, IssueDetails details) {
String message = ActionMessage.generate(testName, details, "failed");
Assert.fail(message);
}
}