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 InputStream> extends AbstractAssert<S,A>
InputStream
s.actual, info, myself
Modifier | Constructor and Description |
---|---|
protected |
AbstractInputStreamAssert(A actual,
Class<?> selfType) |
Modifier and Type | Method and Description |
---|---|
S |
hasContentEqualTo(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, 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, withThreadDumpOnError
public S hasContentEqualTo(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.NullPointerException
- if the given InputStream
is null
.AssertionError
- if the actual InputStream
is null
.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.Copyright © 2013-2015 AssertJ. All Rights Reserved.