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

qa.tools.ikeeper.action.Fail 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.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);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy