com.pivotallabs.greatexpectations.matchers.BooleanMatcher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of great-expectations Show documentation
Show all versions of great-expectations Show documentation
Jasmine-style expect() for Java.
package com.pivotallabs.greatexpectations.matchers;
import com.pivotallabs.greatexpectations.MatcherOf;
@MatcherOf(Boolean.class)
public class BooleanMatcher> extends ObjectMatcher {
public boolean toBeTrue() {
return actual.equals(true);
}
public boolean toBeFalse() {
return actual.equals(false);
}
}