@Test
public void notGotItIconHasProperAltTextIfResponsesScoredIncorrect() {
setResponseScores(0);
wicketTester.startPanel(new TestPanelSource());
TagTester tag = BaseWicketTester.getTagsByWicketId(wicketTester, "icon").get(1); // assumes this the second icon
// String expectedAltText = "Click to remove \"Didn't get it\" scoring.";
assertTrue("Should have 'alt' text including 'Click to remove'" , tag.getAttributeContains("alt", "Click to remove"));
assertTrue("Should have 'alt' text including 'Didn't get it'" , tag.getAttributeContains("alt", "Didn't get it"));
}