SELF - the "self" type of this assertion class. Please read "Emulating
'self types' using Java Generics to simplify fluent API implementation" for more details.ACTUAL - the type of the "actual" value.Assert<SELF,ACTUAL>AbstractArrayAssert, AbstractAssert, AbstractAtomicFieldUpdaterAssert, AbstractAtomicReferenceAssert, AbstractBigDecimalAssert, AbstractBigIntegerAssert, AbstractBooleanArrayAssert, AbstractBooleanAssert, AbstractByteArrayAssert, AbstractByteAssert, AbstractCharacterAssert, AbstractCharArrayAssert, AbstractCharSequenceAssert, AbstractClassAssert, AbstractComparableAssert, AbstractCompletableFutureAssert, AbstractDateAssert, AbstractDoubleArrayAssert, AbstractDoubleAssert, AbstractEnumerableAssert, AbstractFileAssert, AbstractFloatArrayAssert, AbstractFloatAssert, AbstractFutureAssert, AbstractInputStreamAssert, AbstractInstantAssert, AbstractIntArrayAssert, AbstractIntegerAssert, AbstractIterableAssert, AbstractIterableSizeAssert, AbstractListAssert, AbstractLocalDateAssert, AbstractLocalDateTimeAssert, AbstractLocalTimeAssert, AbstractLongArrayAssert, AbstractLongAssert, AbstractMapAssert, AbstractMapSizeAssert, AbstractObjectArrayAssert, AbstractObjectAssert, AbstractOffsetDateTimeAssert, AbstractOffsetTimeAssert, AbstractOptionalAssert, AbstractOptionalDoubleAssert, AbstractOptionalIntAssert, AbstractOptionalLongAssert, AbstractPathAssert, AbstractPredicateAssert, AbstractShortArrayAssert, AbstractShortAssert, AbstractTemporalAssert, AbstractThrowableAssert, AbstractUriAssert, AbstractUrlAssert, AbstractZonedDateTimeAssert, AtomicBooleanAssert, AtomicIntegerArrayAssert, AtomicIntegerAssert, AtomicIntegerFieldUpdaterAssert, AtomicLongArrayAssert, AtomicLongAssert, AtomicLongFieldUpdaterAssert, AtomicMarkableReferenceAssert, AtomicReferenceArrayAssert, AtomicReferenceAssert, AtomicReferenceFieldUpdaterAssert, AtomicStampedReferenceAssert, BigDecimalAssert, BigIntegerAssert, BooleanArrayAssert, BooleanAssert, ByteArrayAssert, ByteAssert, CharacterAssert, CharArrayAssert, CharSequenceAssert, ClassAssert, ClassBasedNavigableIterableAssert, ClassBasedNavigableListAssert, CompletableFutureAssert, DateAssert, DoubleArrayAssert, DoubleAssert, DoublePredicateAssert, FactoryBasedNavigableIterableAssert, FactoryBasedNavigableListAssert, FileAssert, FloatArrayAssert, FloatAssert, FutureAssert, GenericComparableAssert, InputStreamAssert, InstantAssert, IntArrayAssert, IntegerAssert, IntPredicateAssert, IterableAssert, IterableSizeAssert, ListAssert, LocalDateAssert, LocalDateTimeAssert, LocalTimeAssert, LongArrayAssert, LongAssert, LongPredicateAssert, MapAssert, MapSizeAssert, ObjectArrayAssert, ObjectAssert, OffsetDateTimeAssert, OffsetTimeAssert, OptionalAssert, OptionalDoubleAssert, OptionalIntAssert, OptionalLongAssert, PathAssert, PredicateAssert, ShortArrayAssert, ShortAssert, SoftAssertionClassAssert, SoftAssertionIterableAssert, SoftAssertionListAssert, SoftAssertionMapAssert, SoftAssertionPredicateAssert, StringAssert, ThrowableAssert, ThrowableAssertAlternative, UriAssert, UrlAssert, ZonedDateTimeAssertpublic interface ExtensionPoints<SELF extends ExtensionPoints<SELF,ACTUAL>,ACTUAL>
| Modifier and Type | Method | Description |
|---|---|---|
SELF |
doesNotHave(Condition<? super ACTUAL> condition) |
Verifies that the actual value does not satisfy the given condition.
|
SELF |
has(Condition<? super ACTUAL> condition) |
Verifies that the actual value satisfies the given condition.
|
SELF |
is(Condition<? super ACTUAL> condition) |
Verifies that the actual value satisfies the given condition.
|
SELF |
isNot(Condition<? super ACTUAL> condition) |
Verifies that the actual value does not satisfy the given condition.
|
SELF is(Condition<? super ACTUAL> condition)
has(Condition).condition - the given condition.this ExtensionPoints object.NullPointerException - if the given condition is null.AssertionError - if the actual value does not satisfy the given condition.is(Condition)SELF isNot(Condition<? super ACTUAL> condition)
doesNotHave(Condition).condition - the given condition.this ExtensionPoints object.NullPointerException - if the given condition is null.AssertionError - if the actual value satisfies the given condition.isNot(Condition)SELF has(Condition<? super ACTUAL> condition)
is(Condition)
.condition - the given condition.this ExtensionPoints object.NullPointerException - if the given condition is null.AssertionError - if the actual value does not satisfy the given condition.is(Condition)SELF doesNotHave(Condition<? super ACTUAL> condition)
isNot(Condition).condition - the given condition.this ExtensionPoints object.NullPointerException - if the given condition is null.AssertionError - if the actual value satisfies the given condition.isNot(Condition)Copyright © 2014–2019. All rights reserved.