All Downloads are FREE. Search and download functionalities are using the official Maven repository.

qa.tools.ikeeper.action.Skip Maven / Gradle / Ivy

Go to download

Issue keeper is a tracking tool which makes the tests skipped in advance when they are blocked by the open issues.

There is a newer version: 4.13.2
Show newest version
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);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy