Feature summary
Add AbstractStirngAssert#extracting(Charset)AbstractByteArrayAssert so that the byte[] can be verified.
Example
String actual = "";
assertThat(actual)
.hasSize(0)
.extracting(StandardCharset.US_ASCII) // AbstractByteArrayAssert
.hasSize(0)
;