AbstractStringAssert<?> |
AbstractByteArrayAssert.asBase64Encoded() |
Encodes the actual array into a Base64 string, the encoded string becoming the new object under test.
|
AbstractStringAssert<?> |
AbstractByteArrayAssert.asHexString() |
Converts the actual byte array under test to an hexadecimal String and returns assertions for the computed String
allowing String specific assertions from this call.
|
static AbstractStringAssert<?> |
Assertions.assertThat(java.lang.String actual) |
|
static AbstractStringAssert<?> |
AssertionsForClassTypes.assertThat(java.lang.String actual) |
|
static AbstractStringAssert<?> |
Java6Assertions.assertThat(java.lang.String actual) |
Deprecated.
|
default AbstractStringAssert<?> |
WithAssertions.assertThat(java.lang.String actual) |
|
AbstractStringAssert<?> |
AbstractAssert.asString() |
Returns a String assertion for the toString() of the actual
value, to allow chaining of String-specific assertions from this call.
|
AbstractStringAssert<?> |
AbstractByteArrayAssert.asString() |
Converts the actual byte[] under test to a String and returns assertions for the computed String
allowing String specific assertions from this call.
|
AbstractStringAssert<?> |
AbstractByteArrayAssert.asString(java.nio.charset.Charset charset) |
Converts the actual byte[] under test to a String by decoding the specified bytes using the given charset
and returns assertions for the computed String
allowing String specific assertions from this call.
|
AbstractStringAssert<?> |
AbstractInputStreamAssert.asString(java.nio.charset.Charset charset) |
Converts the content of the actual InputStream to a String by decoding its bytes using the given charset
and returns assertions for the computed String allowing String specific assertions from this call.
|
static AbstractStringAssert<?> |
Assumptions.assumeThat(java.lang.String actual) |
|
default AbstractStringAssert<?> |
WithAssumptions.assumeThat(java.lang.String actual) |
|
AbstractStringAssert<?> |
AbstractFileAssert.content() |
Returns String assertions on the content of the actual File read with the default charset .
|
AbstractStringAssert<?> |
AbstractFileAssert.content(java.nio.charset.Charset charset) |
Returns String assertions on the content of the actual File read with the given Charset .
|
AbstractStringAssert<?> |
AbstractPathAssert.content() |
Returns String assertions on the content of the actual Path read with the default charset .
|
AbstractStringAssert<?> |
AbstractPathAssert.content(java.nio.charset.Charset charset) |
Returns String assertions on the content of the actual Path read with the given Charset .
|
AbstractStringAssert<?> |
AbstractByteArrayAssert.encodedAsBase64() |
Deprecated.
|
static AbstractStringAssert<?> |
BDDAssumptions.given(java.lang.String actual) |
Creates a new assumption's instance for a String value.
|
private AbstractStringAssert<?> |
AbstractFileAssert.internalContent(java.nio.charset.Charset charset) |
|
private AbstractStringAssert<?> |
AbstractPathAssert.internalContent(java.nio.charset.Charset charset) |
|
AbstractStringAssert<?> |
AbstractThrowableAssert.message() |
A shortcut for extracting(Throwable::getMessage, as(InstanceOfAssertFactories.STRING)) which allows
to extract a throwable's message and then execute assertions on it.
|
static AbstractStringAssert<?> |
BDDAssertions.then(java.lang.String actual) |
|
static AbstractStringAssert<?> |
Java6BDDAssertions.then(java.lang.String actual) |
Deprecated.
|