MatcherAssert.assertThat(
host.isHidden(new URI("/some-uri")),
Matchers.is(false)
);
MatcherAssert.assertThat(
host.authorized("user-name", "user-password"),
Matchers.is(true)
);
MatcherAssert.assertThat(
host,
Matchers.hasToString(Matchers.equalTo("localhost"))