Package org.assertj.core.error
Class ShouldContainPattern
- java.lang.Object
-
- org.assertj.core.error.BasicErrorMessageFactory
-
- org.assertj.core.error.ShouldContainPattern
-
- All Implemented Interfaces:
ErrorMessageFactory
public class ShouldContainPattern extends BasicErrorMessageFactory
Creates an error message indicating that an assertion that verifies that aCharSequence
contains a pattern failed.
-
-
Field Summary
-
Fields inherited from class org.assertj.core.error.BasicErrorMessageFactory
arguments, format, formatter
-
-
Constructor Summary
Constructors Modifier Constructor Description private
ShouldContainPattern(java.lang.CharSequence actual, java.lang.CharSequence pattern)
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ErrorMessageFactory
shouldContainPattern(java.lang.CharSequence actual, java.lang.CharSequence pattern)
Creates a new
.ShouldContainPattern
-
Methods inherited from class org.assertj.core.error.BasicErrorMessageFactory
create, create, create, equals, hashCode, toString, unquotedString
-
-
-
-
Method Detail
-
shouldContainPattern
public static ErrorMessageFactory shouldContainPattern(java.lang.CharSequence actual, java.lang.CharSequence pattern)
Creates a new
.ShouldContainPattern
- Parameters:
actual
- the actual value in the failed assertion.pattern
- a regular expression pattern.- Returns:
- the created
ErrorMessageFactory
.
-
-