qa.tools.ikeeper.action.Skip 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.Assume;
import qa.tools.ikeeper.IssueDetails;
public class Skip implements IAction {
@Override
public void perform(String testName, IssueDetails details) {
String message = ActionMessage.generate(testName, details, "is skipped");
Assume.assumeTrue(message, false);
}
}