Package org.assertj.core.error
Class ShouldBeRecord
- java.lang.Object
-
- org.assertj.core.error.BasicErrorMessageFactory
-
- org.assertj.core.error.ShouldBeRecord
-
- All Implemented Interfaces:
ErrorMessageFactory
public class ShouldBeRecord extends BasicErrorMessageFactory
Creates an error message indicating that an assertion that verifies that a class is (or not) a record.
-
-
Field Summary
-
Fields inherited from class org.assertj.core.error.BasicErrorMessageFactory
arguments, format, formatter
-
-
Constructor Summary
Constructors Modifier Constructor Description private
ShouldBeRecord(java.lang.Class<?> actual, boolean toBeOrNotToBe)
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ErrorMessageFactory
shouldBeRecord(java.lang.Class<?> actual)
Creates a new
.ShouldBeRecord
static ErrorMessageFactory
shouldNotBeRecord(java.lang.Class<?> actual)
Creates a new
.ShouldBeRecord
-
Methods inherited from class org.assertj.core.error.BasicErrorMessageFactory
create, create, create, equals, hashCode, toString, unquotedString
-
-
-
-
Method Detail
-
shouldBeRecord
public static ErrorMessageFactory shouldBeRecord(java.lang.Class<?> actual)
Creates a new
.ShouldBeRecord
- Parameters:
actual
- the actual value in the failed assertion.- Returns:
- the created
ErrorMessageFactory
.
-
shouldNotBeRecord
public static ErrorMessageFactory shouldNotBeRecord(java.lang.Class<?> actual)
Creates a new
.ShouldBeRecord
- Parameters:
actual
- the actual value in the failed assertion.- Returns:
- the created
ErrorMessageFactory
.
-
-