Package | Description |
---|---|
org.assertj.core.api |
Modifier and Type | Class and Description |
---|---|
class |
AbstractAssert<SELF extends AbstractAssert<SELF,ACTUAL>,ACTUAL>
Base class for all assertions.
|
class |
AbstractIterableAssert<SELF extends AbstractIterableAssert<SELF,ACTUAL,ELEMENT,ELEMENT_ASSERT>,ACTUAL extends Iterable<? extends ELEMENT>,ELEMENT,ELEMENT_ASSERT extends AbstractAssert<ELEMENT_ASSERT,ELEMENT>>
Base class for implementations of
whose actual value type is
. |
class |
AbstractIterableSizeAssert<SELF extends AbstractIterableAssert<SELF,ACTUAL,ELEMENT,ELEMENT_ASSERT>,ACTUAL extends Iterable<? extends ELEMENT>,ELEMENT,ELEMENT_ASSERT extends AbstractAssert<ELEMENT_ASSERT,ELEMENT>> |
class |
AbstractListAssert<SELF extends AbstractListAssert<SELF,ACTUAL,ELEMENT,ELEMENT_ASSERT>,ACTUAL extends List<? extends ELEMENT>,ELEMENT,ELEMENT_ASSERT extends AbstractAssert<ELEMENT_ASSERT,ELEMENT>>
Base class for all implementations of assertions for
List s. |
class |
ClassBasedNavigableIterableAssert<SELF extends ClassBasedNavigableIterableAssert<SELF,ACTUAL,ELEMENT,ELEMENT_ASSERT>,ACTUAL extends Iterable<? extends ELEMENT>,ELEMENT,ELEMENT_ASSERT extends AbstractAssert<ELEMENT_ASSERT,ELEMENT>>
Build the Assert instance by reflection.
|
class |
ClassBasedNavigableListAssert<SELF extends ClassBasedNavigableListAssert<SELF,ACTUAL,ELEMENT,ELEMENT_ASSERT>,ACTUAL extends List<? extends ELEMENT>,ELEMENT,ELEMENT_ASSERT extends AbstractAssert<ELEMENT_ASSERT,ELEMENT>>
Build the Assert instance by reflection.
|
class |
FactoryBasedNavigableIterableAssert<SELF extends FactoryBasedNavigableIterableAssert<SELF,ACTUAL,ELEMENT,ELEMENT_ASSERT>,ACTUAL extends Iterable<? extends ELEMENT>,ELEMENT,ELEMENT_ASSERT extends AbstractAssert<ELEMENT_ASSERT,ELEMENT>>
Provides helper methods for navigating a list property in a generated assertion class so we can chain assertions
through deeply nested models more easily.
|
class |
FactoryBasedNavigableListAssert<SELF extends FactoryBasedNavigableListAssert<SELF,ACTUAL,ELEMENT,ELEMENT_ASSERT>,ACTUAL extends List<? extends ELEMENT>,ELEMENT,ELEMENT_ASSERT extends AbstractAssert<ELEMENT_ASSERT,ELEMENT>>
Provides helper methods for navigating a list property in a generated assertion class so we can chain assertions
through deeply nested models more easily.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractArrayAssert<SELF extends AbstractArrayAssert<SELF,ACTUAL,ELEMENT>,ACTUAL,ELEMENT>
Base class for all array assertions.
|
class |
AbstractAtomicFieldUpdaterAssert<SELF extends AbstractAtomicFieldUpdaterAssert<SELF,VALUE,ATOMIC,OBJECT>,VALUE,ATOMIC,OBJECT>
Base class for all fieldupdater assertions.
|
class |
AbstractAtomicReferenceAssert<SELF extends AbstractAtomicReferenceAssert<SELF,VALUE,ATOMIC>,VALUE,ATOMIC>
Base class for atomic assertions.
|
class |
AbstractBigDecimalAssert<SELF extends AbstractBigDecimalAssert<SELF>>
Base class for all implementations of assertions for
BigDecimal s. |
class |
AbstractBigIntegerAssert<SELF extends AbstractBigIntegerAssert<SELF>>
Base class for all implementations of assertions for
BigInteger s. |
class |
AbstractBooleanArrayAssert<SELF extends AbstractBooleanArrayAssert<SELF>> |
class |
AbstractBooleanAssert<SELF extends AbstractBooleanAssert<SELF>>
Base class for all implementations of assertions for
Boolean s. |
class |
AbstractByteArrayAssert<SELF extends AbstractByteArrayAssert<SELF>> |
class |
AbstractByteAssert<SELF extends AbstractByteAssert<SELF>>
Base class for all implementations of assertions for
Byte s. |
class |
AbstractCharacterAssert<SELF extends AbstractCharacterAssert<SELF>>
Base class for all implementations of assertions for
Character s. |
class |
AbstractCharArrayAssert<SELF extends AbstractCharArrayAssert<SELF>> |
class |
AbstractCharSequenceAssert<SELF extends AbstractCharSequenceAssert<SELF,ACTUAL>,ACTUAL extends CharSequence>
Base class for all implementations of assertions for
CharSequence s. |
class |
AbstractClassAssert<SELF extends AbstractClassAssert<SELF>>
Base class for all implementations of assertions for
Class es. |
class |
AbstractComparableAssert<SELF extends AbstractComparableAssert<SELF,ACTUAL>,ACTUAL extends Comparable<? super ACTUAL>>
Base class for all implementations of
. |
class |
AbstractCompletableFutureAssert<SELF extends AbstractCompletableFutureAssert<SELF,RESULT>,RESULT>
Assertions for
CompletableFuture . |
class |
AbstractDateAssert<SELF extends AbstractDateAssert<SELF>>
Base class for all implementations of assertions for
Date s. |
class |
AbstractDoubleArrayAssert<SELF extends AbstractDoubleArrayAssert<SELF>> |
class |
AbstractDoubleAssert<SELF extends AbstractDoubleAssert<SELF>>
Base class for all implementations of assertions for
Double s. |
class |
AbstractEnumerableAssert<SELF extends AbstractEnumerableAssert<SELF,ACTUAL,ELEMENT>,ACTUAL,ELEMENT>
Base implementation for Enumerable class assertions.
|
class |
AbstractFileAssert<SELF extends AbstractFileAssert<SELF>>
Base class for all implementations of assertions for
File s. |
class |
AbstractFloatArrayAssert<SELF extends AbstractFloatArrayAssert<SELF>> |
class |
AbstractFloatAssert<SELF extends AbstractFloatAssert<SELF>>
Base class for all implementations of assertions for
Float s. |
class |
AbstractFutureAssert<SELF extends AbstractFutureAssert<SELF,ACTUAL,RESULT>,ACTUAL extends Future<RESULT>,RESULT> |
class |
AbstractInputStreamAssert<SELF extends AbstractInputStreamAssert<SELF,ACTUAL>,ACTUAL extends InputStream>
Base class for all implementations of assertions for
InputStream s. |
class |
AbstractInstantAssert<SELF extends AbstractInstantAssert<SELF>>
Assertions for
Instant type from new Date & Time API introduced in Java 8. |
class |
AbstractIntArrayAssert<SELF extends AbstractIntArrayAssert<SELF>> |
class |
AbstractIntegerAssert<SELF extends AbstractIntegerAssert<SELF>>
Base class for all implementations of assertions for
Integer s. |
class |
AbstractIterableAssert<SELF extends AbstractIterableAssert<SELF,ACTUAL,ELEMENT,ELEMENT_ASSERT>,ACTUAL extends Iterable<? extends ELEMENT>,ELEMENT,ELEMENT_ASSERT extends AbstractAssert<ELEMENT_ASSERT,ELEMENT>>
Base class for implementations of
whose actual value type is
. |
class |
AbstractIterableSizeAssert<SELF extends AbstractIterableAssert<SELF,ACTUAL,ELEMENT,ELEMENT_ASSERT>,ACTUAL extends Iterable<? extends ELEMENT>,ELEMENT,ELEMENT_ASSERT extends AbstractAssert<ELEMENT_ASSERT,ELEMENT>> |
class |
AbstractIteratorAssert<SELF extends AbstractIteratorAssert<SELF,ELEMENT>,ELEMENT>
Base class for all implementations of assertions for
Iterator s. |
class |
AbstractListAssert<SELF extends AbstractListAssert<SELF,ACTUAL,ELEMENT,ELEMENT_ASSERT>,ACTUAL extends List<? extends ELEMENT>,ELEMENT,ELEMENT_ASSERT extends AbstractAssert<ELEMENT_ASSERT,ELEMENT>>
Base class for all implementations of assertions for
List s. |
class |
AbstractLocalDateAssert<SELF extends AbstractLocalDateAssert<SELF>>
Assertions for
LocalDate type from new Date & Time API introduced in Java 8. |
class |
AbstractLocalDateTimeAssert<SELF extends AbstractLocalDateTimeAssert<SELF>>
Assertions for
LocalDateTime type from new Date & Time API introduced in Java 8. |
class |
AbstractLocalTimeAssert<SELF extends AbstractLocalTimeAssert<SELF>>
Assertions for
LocalTime type from new Date & Time API introduced in Java 8. |
class |
AbstractLongArrayAssert<SELF extends AbstractLongArrayAssert<SELF>> |
class |
AbstractLongAssert<SELF extends AbstractLongAssert<SELF>>
Base class for all implementations of assertions for
Long s. |
class |
AbstractMapAssert<SELF extends AbstractMapAssert<SELF,ACTUAL,K,V>,ACTUAL extends Map<K,V>,K,V>
Base class for all implementations of assertions for
Map s. |
class |
AbstractMapSizeAssert<SELF extends AbstractMapAssert<SELF,A,KEY,VALUE>,A extends Map<KEY,VALUE>,KEY,VALUE> |
class |
AbstractObjectArrayAssert<SELF extends AbstractObjectArrayAssert<SELF,ELEMENT>,ELEMENT>
Assertion methods for arrays of objects.
|
class |
AbstractObjectAssert<SELF extends AbstractObjectAssert<SELF,ACTUAL>,ACTUAL>
Base class for all implementations of assertions for
Object s. |
class |
AbstractOffsetDateTimeAssert<SELF extends AbstractOffsetDateTimeAssert<SELF>>
Assertions for
OffsetDateTime type from new Date & Time API introduced in Java 8. |
class |
AbstractOffsetTimeAssert<SELF extends AbstractOffsetTimeAssert<SELF>>
Assertions for
OffsetTime type from new Date & Time API introduced in Java 8. |
class |
AbstractOptionalAssert<SELF extends AbstractOptionalAssert<SELF,VALUE>,VALUE>
Assertions for
Optional . |
class |
AbstractOptionalDoubleAssert<SELF extends AbstractOptionalDoubleAssert<SELF>>
Assertions for
OptionalDouble . |
class |
AbstractOptionalIntAssert<SELF extends AbstractOptionalIntAssert<SELF>>
Assertions for
OptionalInt . |
class |
AbstractOptionalLongAssert<SELF extends AbstractOptionalLongAssert<SELF>>
Assertions for
OptionalLong . |
class |
AbstractPathAssert<SELF extends AbstractPathAssert<SELF>>
Assertions for
Path objects |
class |
AbstractPredicateAssert<SELF extends AbstractPredicateAssert<SELF,T>,T>
Assertions for
Predicate . |
class |
AbstractShortArrayAssert<SELF extends AbstractShortArrayAssert<SELF>> |
class |
AbstractShortAssert<SELF extends AbstractShortAssert<SELF>>
Base class for all implementations of assertions for
Short s. |
class |
AbstractStringAssert<SELF extends AbstractStringAssert<SELF>> |
class |
AbstractTemporalAssert<SELF extends AbstractTemporalAssert<SELF,TEMPORAL>,TEMPORAL extends Temporal>
Base class for all implementations of assertions for
Temporal s. |
class |
AbstractThrowableAssert<SELF extends AbstractThrowableAssert<SELF,ACTUAL>,ACTUAL extends Throwable>
Base class for all implementations of assertions for
Throwable s. |
class |
AbstractUriAssert<SELF extends AbstractUriAssert<SELF>>
Base class for all implementations of assertions for
URI s. |
class |
AbstractUrlAssert<SELF extends AbstractUrlAssert<SELF>>
Base class for all implementations of assertions for
URL s. |
class |
AbstractZonedDateTimeAssert<SELF extends AbstractZonedDateTimeAssert<SELF>> |
class |
AtomicBooleanAssert |
class |
AtomicIntegerArrayAssert |
class |
AtomicIntegerAssert |
class |
AtomicIntegerFieldUpdaterAssert<OBJECT>
Assertion methods for
AtomicIntegerFieldUpdater s. |
class |
AtomicLongArrayAssert |
class |
AtomicLongAssert |
class |
AtomicLongFieldUpdaterAssert<OBJECT>
Assertion methods for
AtomicLongFieldUpdater s. |
class |
AtomicMarkableReferenceAssert<VALUE>
Assertion methods for
AtomicMarkableReference s. |
class |
AtomicReferenceArrayAssert<T> |
class |
AtomicReferenceAssert<V> |
class |
AtomicReferenceFieldUpdaterAssert<FIELD,OBJECT>
Assertion methods for
AtomicReferenceFieldUpdater s. |
class |
AtomicStampedReferenceAssert<VALUE>
Assertion methods for
AtomicStampedReference s. |
class |
BigDecimalAssert
Assertion methods for
BigDecimal s. |
class |
BigIntegerAssert
Assertion methods for
BigInteger s. |
class |
BooleanArrayAssert
Assertion methods for arrays of
boolean s. |
class |
BooleanAssert
Assertion methods for
Boolean s. |
class |
ByteArrayAssert
Assertion methods for arrays of
byte s. |
class |
ByteAssert
Assertion methods for
Byte s. |
class |
CharacterAssert
Assertion methods for
Character s. |
class |
CharArrayAssert
Assertion methods for arrays of
char s. |
class |
CharSequenceAssert
Assertion methods for
CharSequence s. |
class |
ClassAssert
Assertion methods for
Class es. |
class |
ClassBasedNavigableIterableAssert<SELF extends ClassBasedNavigableIterableAssert<SELF,ACTUAL,ELEMENT,ELEMENT_ASSERT>,ACTUAL extends Iterable<? extends ELEMENT>,ELEMENT,ELEMENT_ASSERT extends AbstractAssert<ELEMENT_ASSERT,ELEMENT>>
Build the Assert instance by reflection.
|
class |
ClassBasedNavigableListAssert<SELF extends ClassBasedNavigableListAssert<SELF,ACTUAL,ELEMENT,ELEMENT_ASSERT>,ACTUAL extends List<? extends ELEMENT>,ELEMENT,ELEMENT_ASSERT extends AbstractAssert<ELEMENT_ASSERT,ELEMENT>>
Build the Assert instance by reflection.
|
class |
CompletableFutureAssert<RESULT>
Assertions for
CompletableFuture . |
class |
DateAssert
Assertions for
Date s. |
class |
DoubleArrayAssert
Assertion methods for arrays of
double s. |
class |
DoubleAssert
Assertion methods for
Double s. |
class |
DoublePredicateAssert
Assertions for
Predicate . |
class |
FactoryBasedNavigableIterableAssert<SELF extends FactoryBasedNavigableIterableAssert<SELF,ACTUAL,ELEMENT,ELEMENT_ASSERT>,ACTUAL extends Iterable<? extends ELEMENT>,ELEMENT,ELEMENT_ASSERT extends AbstractAssert<ELEMENT_ASSERT,ELEMENT>>
Provides helper methods for navigating a list property in a generated assertion class so we can chain assertions
through deeply nested models more easily.
|
class |
FactoryBasedNavigableListAssert<SELF extends FactoryBasedNavigableListAssert<SELF,ACTUAL,ELEMENT,ELEMENT_ASSERT>,ACTUAL extends List<? extends ELEMENT>,ELEMENT,ELEMENT_ASSERT extends AbstractAssert<ELEMENT_ASSERT,ELEMENT>>
Provides helper methods for navigating a list property in a generated assertion class so we can chain assertions
through deeply nested models more easily.
|
class |
FileAssert
Assertion methods for
File s. |
class |
FloatArrayAssert
Assertion methods for arrays of
float s. |
class |
FloatAssert
Assertion methods for floats.
|
class |
FutureAssert<RESULT>
Assertion methods for
Future . |
class |
GenericComparableAssert<ACTUAL extends Comparable<? super ACTUAL>>
Concrete generic
to be used through Assertions.assertThat(java.lang.Comparable) . |
class |
InputStreamAssert
Assertion methods for
InputStream s. |
class |
InstantAssert
Assertion methods for
Instant s. |
class |
IntArrayAssert
Assertion methods for arrays of
int s. |
class |
IntegerAssert
Assertion methods for
Integer s. |
class |
IntPredicateAssert
Assertions for
Predicate . |
class |
IterableAssert<ELEMENT>
Assertion methods for
Iterable . |
class |
IterableSizeAssert<T> |
class |
IteratorAssert<ELEMENT>
Assertion methods for
Iterator . |
class |
ListAssert<ELEMENT>
Assertion methods for
List s. |
class |
LocalDateAssert |
class |
LocalDateTimeAssert |
class |
LocalTimeAssert |
class |
LongArrayAssert
Assertion methods for arrays of
long s. |
class |
LongAssert
Assertion methods for
Long s. |
class |
LongPredicateAssert
Assertions for
LongPredicate . |
class |
MapAssert<KEY,VALUE>
Assertions for
Map s. |
class |
MapSizeAssert<KEY,VALUE> |
class |
ObjectArrayAssert<ELEMENT>
Assertion methods for arrays of objects.
|
class |
ObjectAssert<ACTUAL>
Assertion methods for
Object s. |
class |
OffsetDateTimeAssert |
class |
OffsetTimeAssert |
class |
OptionalAssert<VALUE>
Assertions for
Optional . |
class |
OptionalDoubleAssert
Assertions for
OptionalDouble . |
class |
OptionalIntAssert
Assertions for
OptionalInt . |
class |
OptionalLongAssert
Assertions for
OptionalLong . |
class |
PathAssert
Assertion class for
Path s |
class |
PredicateAssert<T>
Assertions for
Predicate . |
class |
ProxyableClassAssert
Concrete assertions for
Class s without any final methods to allow proxying. |
class |
ProxyableIterableAssert<ELEMENT>
Concrete assertions for
Iterable s without any final methods to allow proxying. |
class |
ProxyableListAssert<ELEMENT>
Concrete assertions for
List s without any final methods to allow proxying. |
class |
ProxyableMapAssert<KEY,VALUE>
Concrete assertions for
Map s without any final methods to allow proxying. |
class |
ProxyableObjectArrayAssert<ELEMENT>
Concrete assertions for arrays of objects without any final methods to allow proxying.
|
class |
ProxyableObjectAssert<ACTUAL>
Concrete assertions for
Object s without any final methods to allow proxying. |
class |
ProxyablePredicateAssert<T>
Concrete assertions for
Predicate s without any final methods to allow proxying. |
class |
RecursiveComparisonAssert<SELF extends RecursiveComparisonAssert<SELF>> |
class |
ShortArrayAssert
Assertion methods for arrays of
short s. |
class |
ShortAssert
Assertion methods for
Short s. |
class |
StringAssert
Assertion methods for
String s. |
class |
ThrowableAssert
Assertion methods for
Throwable s. |
class |
ThrowableAssertAlternative<T extends Throwable>
Assertion methods for
Throwable similar to ThrowableAssert but with assertions methods named
differently to make testing code fluent (ex : withMessage instead of hasMessage . |
class |
UriAssert
Assertion class for
URI s |
class |
UrlAssert
Assertion class for
URL s |
class |
ZonedDateTimeAssert
Assertions for
ZonedDateTime type from new Date & Time API introduced in Java 8. |
Modifier and Type | Field and Description |
---|---|
protected SELF |
AbstractAssert.myself |
Modifier and Type | Method and Description |
---|---|
default <ACTUAL extends Iterable<? extends ELEMENT>,ELEMENT,ELEMENT_ASSERT extends AbstractAssert<ELEMENT_ASSERT,ELEMENT>> |
WithAssertions.assertThat(ACTUAL actual,
Class<ELEMENT_ASSERT> assertClass)
Creates a new instance of
allowing to navigate to any Iterable element
in order to perform assertions on it. |
static <ACTUAL extends Iterable<? extends ELEMENT>,ELEMENT,ELEMENT_ASSERT extends AbstractAssert<ELEMENT_ASSERT,ELEMENT>> |
AssertionsForInterfaceTypes.assertThat(ACTUAL actual,
Class<ELEMENT_ASSERT> assertClass) |
static <ACTUAL extends Iterable<? extends ELEMENT>,ELEMENT,ELEMENT_ASSERT extends AbstractAssert<ELEMENT_ASSERT,ELEMENT>> |
Assertions.assertThat(ACTUAL actual,
Class<ELEMENT_ASSERT> assertClass)
Creates a new instance of
allowing to navigate to any Iterable element
in order to perform assertions on it. |
static <ACTUAL extends Iterable<? extends ELEMENT>,ELEMENT,ELEMENT_ASSERT extends AbstractAssert<ELEMENT_ASSERT,ELEMENT>> |
Java6Assertions.assertThat(ACTUAL actual,
Class<ELEMENT_ASSERT> assertClass)
Creates a new instance of
allowing to navigate to any Iterable element
in order to perform assertions on it. |
default <ACTUAL extends Iterable<? extends ELEMENT>,ELEMENT,ELEMENT_ASSERT extends AbstractAssert<ELEMENT_ASSERT,ELEMENT>> |
WithAssertions.assertThat(Iterable<? extends ELEMENT> actual,
AssertFactory<ELEMENT,ELEMENT_ASSERT> assertFactory)
Creates a new instance of
allowing to navigate to any Iterable element
in order to perform assertions on it. |
static <ACTUAL extends Iterable<? extends ELEMENT>,ELEMENT,ELEMENT_ASSERT extends AbstractAssert<ELEMENT_ASSERT,ELEMENT>> |
AssertionsForInterfaceTypes.assertThat(Iterable<? extends ELEMENT> actual,
AssertFactory<ELEMENT,ELEMENT_ASSERT> assertFactory)
Creates a new instance of
. |
static <ACTUAL extends Iterable<? extends ELEMENT>,ELEMENT,ELEMENT_ASSERT extends AbstractAssert<ELEMENT_ASSERT,ELEMENT>> |
Assertions.assertThat(Iterable<? extends ELEMENT> actual,
AssertFactory<ELEMENT,ELEMENT_ASSERT> assertFactory)
Creates a new instance of
allowing to navigate to any Iterable element
in order to perform assertions on it. |
static <ACTUAL extends Iterable<? extends ELEMENT>,ELEMENT,ELEMENT_ASSERT extends AbstractAssert<ELEMENT_ASSERT,ELEMENT>> |
Java6Assertions.assertThat(Iterable<? extends ELEMENT> actual,
AssertFactory<ELEMENT,ELEMENT_ASSERT> assertFactory)
Creates a new instance of
allowing to navigate to any Iterable element
in order to perform assertions on it. |
default <ACTUAL extends List<? extends ELEMENT>,ELEMENT,ELEMENT_ASSERT extends AbstractAssert<ELEMENT_ASSERT,ELEMENT>> |
WithAssertions.assertThat(List<? extends ELEMENT> actual,
AssertFactory<ELEMENT,ELEMENT_ASSERT> assertFactory)
Creates a new instance of
allowing to navigate to any List element
in order to perform assertions on it. |
static <ACTUAL extends List<? extends ELEMENT>,ELEMENT,ELEMENT_ASSERT extends AbstractAssert<ELEMENT_ASSERT,ELEMENT>> |
AssertionsForInterfaceTypes.assertThat(List<? extends ELEMENT> actual,
AssertFactory<ELEMENT,ELEMENT_ASSERT> assertFactory) |
static <ACTUAL extends List<? extends ELEMENT>,ELEMENT,ELEMENT_ASSERT extends AbstractAssert<ELEMENT_ASSERT,ELEMENT>> |
Assertions.assertThat(List<? extends ELEMENT> actual,
AssertFactory<ELEMENT,ELEMENT_ASSERT> assertFactory)
Creates a new instance of
allowing to navigate to any List element
in order to perform assertions on it. |
static <ACTUAL extends List<? extends ELEMENT>,ELEMENT,ELEMENT_ASSERT extends AbstractAssert<ELEMENT_ASSERT,ELEMENT>> |
Java6Assertions.assertThat(List<? extends ELEMENT> actual,
AssertFactory<ELEMENT,ELEMENT_ASSERT> assertFactory)
Creates a new instance of
allowing to navigate to any List element
in order to perform assertions on it. |
default <ELEMENT,ACTUAL extends List<? extends ELEMENT>,ELEMENT_ASSERT extends AbstractAssert<ELEMENT_ASSERT,ELEMENT>> |
WithAssertions.assertThat(List<? extends ELEMENT> actual,
Class<ELEMENT_ASSERT> assertClass)
Creates a new instance of
tallowing to navigate to any List element
in order to perform assertions on it. |
static <ELEMENT,ACTUAL extends List<? extends ELEMENT>,ELEMENT_ASSERT extends AbstractAssert<ELEMENT_ASSERT,ELEMENT>> |
AssertionsForInterfaceTypes.assertThat(List<? extends ELEMENT> actual,
Class<ELEMENT_ASSERT> assertClass) |
static <ELEMENT,ACTUAL extends List<? extends ELEMENT>,ELEMENT_ASSERT extends AbstractAssert<ELEMENT_ASSERT,ELEMENT>> |
Assertions.assertThat(List<? extends ELEMENT> actual,
Class<ELEMENT_ASSERT> assertClass)
Creates a new instance of
tallowing to navigate to any List element
in order to perform assertions on it. |
static <ELEMENT,ACTUAL extends List<? extends ELEMENT>,ELEMENT_ASSERT extends AbstractAssert<ELEMENT_ASSERT,ELEMENT>> |
Java6Assertions.assertThat(List<? extends ELEMENT> actual,
Class<ELEMENT_ASSERT> assertClass)
Creates a new instance of
allowing to navigate to any List element
in order to perform assertions on it. |
static <ACTUAL extends Iterable<? extends ELEMENT>,ELEMENT,ELEMENT_ASSERT extends AbstractAssert<ELEMENT_ASSERT,ELEMENT>> |
Java6BDDAssertions.then(ACTUAL actual,
Class<ELEMENT_ASSERT> assertClass)
Creates a new instance of
allowing to navigate to any Iterable element
in order to perform assertions on it. |
static <ACTUAL extends Iterable<? extends ELEMENT>,ELEMENT,ELEMENT_ASSERT extends AbstractAssert<ELEMENT_ASSERT,ELEMENT>> |
BDDAssertions.then(ACTUAL actual,
Class<ELEMENT_ASSERT> assertClass)
Creates a new instance of
allowing to navigate to any Iterable element
in order to perform assertions on it. |
static <ACTUAL extends Iterable<? extends ELEMENT>,ELEMENT,ELEMENT_ASSERT extends AbstractAssert<ELEMENT_ASSERT,ELEMENT>> |
Java6BDDAssertions.then(Iterable<? extends ELEMENT> actual,
AssertFactory<ELEMENT,ELEMENT_ASSERT> assertFactory)
Creates a new instance of
allowing to navigate to any Iterable element
in order to perform assertions on it. |
static <ACTUAL extends Iterable<? extends ELEMENT>,ELEMENT,ELEMENT_ASSERT extends AbstractAssert<ELEMENT_ASSERT,ELEMENT>> |
BDDAssertions.then(Iterable<? extends ELEMENT> actual,
AssertFactory<ELEMENT,ELEMENT_ASSERT> assertFactory)
Creates a new instance of
allowing to navigate to any Iterable element
in order to perform assertions on it. |
static <ACTUAL extends List<? extends ELEMENT>,ELEMENT,ELEMENT_ASSERT extends AbstractAssert<ELEMENT_ASSERT,ELEMENT>> |
Java6BDDAssertions.then(List<? extends ELEMENT> actual,
AssertFactory<ELEMENT,ELEMENT_ASSERT> assertFactory)
Creates a new instance of
allowing to navigate to any List element
in order to perform assertions on it. |
static <ACTUAL extends List<? extends ELEMENT>,ELEMENT,ELEMENT_ASSERT extends AbstractAssert<ELEMENT_ASSERT,ELEMENT>> |
BDDAssertions.then(List<? extends ELEMENT> actual,
AssertFactory<ELEMENT,ELEMENT_ASSERT> assertFactory)
Creates a new instance of
allowing to navigate to any List element
in order to perform assertions on it. |
static <ELEMENT,ACTUAL extends List<? extends ELEMENT>,ELEMENT_ASSERT extends AbstractAssert<ELEMENT_ASSERT,ELEMENT>> |
Java6BDDAssertions.then(List<? extends ELEMENT> actual,
Class<ELEMENT_ASSERT> assertClass)
Creates a new instance of
allowing to navigate to any List element
in order to perform assertions on it. |
static <ELEMENT,ACTUAL extends List<? extends ELEMENT>,ELEMENT_ASSERT extends AbstractAssert<ELEMENT_ASSERT,ELEMENT>> |
BDDAssertions.then(List<? extends ELEMENT> actual,
Class<ELEMENT_ASSERT> assertClass)
Creates a new instance of
tallowing to navigate to any List element
in order to perform assertions on it. |
Modifier and Type | Method and Description |
---|---|
static AbstractAssert<?,?> |
ProxifyMethodChangingTheObjectUnderTest.intercept(ProxifyMethodChangingTheObjectUnderTest dispatcher,
Callable<AbstractAssert<?,?>> assertionMethod,
AbstractAssert<?,?> currentAssertInstance) |
Modifier and Type | Method and Description |
---|---|
static AbstractAssert<?,?> |
ProxifyMethodChangingTheObjectUnderTest.intercept(ProxifyMethodChangingTheObjectUnderTest dispatcher,
Callable<AbstractAssert<?,?>> assertionMethod,
AbstractAssert<?,?> currentAssertInstance) |
Modifier and Type | Method and Description |
---|---|
static AbstractAssert<?,?> |
ProxifyMethodChangingTheObjectUnderTest.intercept(ProxifyMethodChangingTheObjectUnderTest dispatcher,
Callable<AbstractAssert<?,?>> assertionMethod,
AbstractAssert<?,?> currentAssertInstance) |
Copyright © 2014–2019 AssertJ. All rights reserved.