@Test void wrongTagDoesNotMatch() { assertThrows( AssertionError.class, () -> { PageFragment fragment = MockFactory.fragment().withTagName("foo").build(); assertThat(fragment, has(tag("bar"))); }); }
@Test void equalTagMatches() { PageFragment fragment = MockFactory.fragment().withTagName("foo").build(); assertThat(fragment, has(tag("foo"))); }