S
- the "self" type of this assertion class. Please read "Emulating 'self types' using Java Generics to simplify fluent API implementation"
for more details.A
- the type of the "actual" value.public abstract class AbstractInputStreamAssert<S extends AbstractInputStreamAssert<S,A>,A extends java.io.InputStream> extends AbstractAssert<S,A>
InputStream
s.Modifier and Type | Field and Description |
---|---|
(package private) InputStreams |
inputStreams |
actual, conditions, info, myself, objects
Modifier | Constructor and Description |
---|---|
protected |
AbstractInputStreamAssert(A actual,
java.lang.Class<?> selfType) |
Modifier and Type | Method and Description |
---|---|
S |
hasContentEqualTo(java.io.InputStream expected)
Deprecated.
use hasSameContentAs
|
S |
hasSameContentAs(java.io.InputStream expected)
Verifies that the content of the actual
InputStream is equal to the content of the given one. |
as, as, asList, asString, describedAs, describedAs, descriptionText, doesNotHave, doesNotHaveSameClassAs, equals, failWithMessage, getWritableAssertionInfo, has, hashCode, hasSameClassAs, hasToString, inBinary, inHexadecimal, is, isEqualTo, isExactlyInstanceOf, isIn, isIn, isInstanceOf, isInstanceOfAny, isNot, isNotEqualTo, isNotExactlyInstanceOf, isNotIn, isNotIn, isNotInstanceOf, isNotInstanceOfAny, isNotNull, isNotOfAnyClassIn, isNotSameAs, isNull, isOfAnyClassIn, isSameAs, overridingErrorMessage, usingComparator, usingDefaultComparator, withFailMessage, withThreadDumpOnError
InputStreams inputStreams
protected AbstractInputStreamAssert(A actual, java.lang.Class<?> selfType)
@Deprecated public S hasContentEqualTo(java.io.InputStream expected)
InputStream
is equal to the content of the given one.expected
- the given InputStream
to compare the actual InputStream
to.this
assertion object.java.lang.NullPointerException
- if the given InputStream
is null
.java.lang.AssertionError
- if the actual InputStream
is null
.java.lang.AssertionError
- if the content of the actual InputStream
is not equal to the content of the given one.InputStreamsException
- if an I/O error occurs.public S hasSameContentAs(java.io.InputStream expected)
InputStream
is equal to the content of the given one.expected
- the given InputStream
to compare the actual InputStream
to.this
assertion object.java.lang.NullPointerException
- if the given InputStream
is null
.java.lang.AssertionError
- if the actual InputStream
is null
.java.lang.AssertionError
- if the content of the actual InputStream
is not equal to the content of the given one.InputStreamsException
- if an I/O error occurs.