Interface StringMatcher<FLUENT>

All Known Subinterfaces:
AttributeBuilder<FLUENT>, NotStringMatcher<FLUENT>

public interface StringMatcher<FLUENT>
Author:
Jan Papousek
  • Method Summary

    Modifier and Type
    Method
    Description
    contains(String expected)
    Checks whether the text contains the given string.
    equalTo(String expected)
    Checks whether the text is equal to the given string.
    Checks whether the text is equal to the given string ignoring case considerations.
    matches(String expected)
    Checks whether the text matches to the given string.
  • Method Details

    • contains

      FLUENT contains(String expected)
      Checks whether the text contains the given string.
    • equalTo

      FLUENT equalTo(String expected)
      Checks whether the text is equal to the given string.
    • equalToIgnoreCase

      FLUENT equalToIgnoreCase(String expected)
      Checks whether the text is equal to the given string ignoring case considerations.
    • matches

      FLUENT matches(String expected)
      Checks whether the text matches to the given string.