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

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

There is a newer version: 0.14
Show newest version
package com.pivotallabs.greatexpectations.matchers;

import com.pivotallabs.greatexpectations.MatcherOf;

import java.util.regex.Pattern;

@MatcherOf(String.class)
public class StringMatcher> extends ObjectMatcher {
  public boolean toContain(String expected) {
    return actual.indexOf(expected) != -1;
  }

  public boolean toMatch(String expectedPattern) {
    return Pattern.compile(expectedPattern).matcher(actual).find();
  }

//  public boolean toEqual(String expected) {
//    if (!GreatExpectations.equalsSafely(expected, actual) && !inverted) {
//      GreatExpectations.lastExpectTrace = null;
//      throw new ComparisonFailure("Expected strings to be equal to each other", expected, actual); // Shows friendly diff
//    }
//    return actual.equals(expected);
//  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy