@Category(IntegrationTest.class)
public class HeadingTest extends WicketApplicationTest {
@Test
public void isInstantiableWithoutError() {
Heading heading = new Heading("id");
for (int i = 1; i <= 6; ++i) {
tester().startComponentInPage(heading, Markup.of("<h" + i + " wicket:id='id'>Heading</h" + i + ">"));
tester().assertNoErrorMessage();
}