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

com.pivotallabs.greatexpectations.matchers.BooleanMatcher Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy