@Test
@SuppressWarnings("PMD.DoNotUseThreads")
public void sendsDataFromSlowResource() throws Exception {
final String content = "\u0433 some text";
// @checkstyle AnonInnerLength (50 lines)
final Resource res = new Resource() {
@Override
public long writeTo(final OutputStream stream) {
try {
TimeUnit.SECONDS.sleep(2L);
} catch (final InterruptedException ex) {