Class ShouldStartWith

All Implemented Interfaces:
ErrorMessageFactory

public class ShouldStartWith extends BasicErrorMessageFactory
Creates an error message indicating that an assertion that verifies that a group of elements starts with a given value or sequence of values failed. A group of elements can be a collection, an array or a String.
Author:
Alex Ruiz, Joel Costigliola
  • Method Details

    • shouldStartWith

      public static ErrorMessageFactory shouldStartWith(Object actual, Object expected, org.assertj.core.internal.ComparisonStrategy comparisonStrategy)
      Creates a new ShouldStartWith.
      Parameters:
      actual - the actual value in the failed assertion.
      expected - the value or sequence of values that actual is expected to start with.
      comparisonStrategy - the ComparisonStrategy used to evaluate assertion.
      Returns:
      the created ErrorMessageFactory.
    • shouldStartWith

      public static ErrorMessageFactory shouldStartWith(Object actual, Object expected)
      Creates a new ShouldStartWith.
      Parameters:
      actual - the actual value in the failed assertion.
      expected - the value or sequence of values that actual is expected to start with.
      Returns:
      the created ErrorMessageFactory.