T
- type
of the Object
that is the subject
of the assertion.@FunctionalInterface
public static interface GeodeAssertions.AssertThat<T>
GeodeAssertions.AssertThat
interface
defines a contract for making assertion about
a given Object
used as the subject
of the assert statement.Modifier and Type | Method and Description |
---|---|
T |
getSubject()
Returns the
Object used as the subject of this assertion. |
default void |
isInstanceOfGemFireCacheImpl()
Asserts the
getSubject() is an instance of GemFireCacheImpl . |
default void |
isInstanceOfInternalDistributedSystem()
Asserts the
getSubject() is an instance of InternalDistributedSystem . |
default void |
isNotInstanceOfAbstractRegion()
Asserts the
getSubject() is not an instance of AbstractRegion . |
default void |
isNotInstanceOfGemFireCacheImpl()
Asserts the
getSubject() is not an instance of GemFireCacheImpl . |
default void |
isNotInstanceOfInternalDistributedSystem()
Asserts the
getSubject() is not an instance of InternalDistributedSystem . |
default void |
isNotNull()
Asserts the
subject is not null. |
T getSubject()
Object
used as the subject of this assertion.Object
used as the subject of this assertion.Object
default void isNotNull()
subject
is not null.default void isInstanceOfGemFireCacheImpl()
getSubject()
is an instance of GemFireCacheImpl
.default void isInstanceOfInternalDistributedSystem()
getSubject()
is an instance of InternalDistributedSystem
.default void isNotInstanceOfAbstractRegion()
getSubject()
is not an instance of AbstractRegion
.default void isNotInstanceOfGemFireCacheImpl()
getSubject()
is not an instance of GemFireCacheImpl
.default void isNotInstanceOfInternalDistributedSystem()
getSubject()
is not an instance of InternalDistributedSystem
.