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

fj.data.test.PropertyAssert Maven / Gradle / Ivy

package fj.data.test;

import fj.Unit;
import fj.test.CheckResult;
import fj.test.Property;
import org.junit.Assert;

/**
 * Created by MarkPerry on 18/12/2014.
 */
public class PropertyAssert {

    public static Unit assertResult(Property p) {
        CheckResult cr = p.check();
        CheckResult.summary.println(cr);
        Assert.assertTrue(cr.isExhausted() || cr.isPassed() || cr.isProven());
        return Unit.unit();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy