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

com.github.karsaig.approvalcrest.AssertUtil Maven / Gradle / Ivy

The newest version!
package com.github.karsaig.approvalcrest;

public class AssertUtil {

    static public void fail(String message) {
        if (message == null) {
            throw new AssertionError();
        }
        throw new AssertionError(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy