1 37 package net.sourceforge.cruisecontrol.webtest; 38 39 import net.sourceforge.jwebunit.WebTestCase; 40 41 public class MetricsTabWebTest extends WebTestCase { 42 protected void setUp() throws Exception { 43 super.setUp(); 44 getTestContext().setBaseUrl("http://localhost:7854"); 45 } 46 47 public void testMetricsTab() { 48 beginAt("/cruisecontrol"); 49 assertTextPresent("CruiseControl"); 50 51 52 clickLinkWithText("connectfour"); 53 clickLinkWithText("Metrics"); 54 assertTextPresent("Number of Build Attempts"); 55 } 56 } 57 | Popular Tags |