public void setUp() throws Exception {
   super.setUp();
   result = new TestSuiteResult(null);
   result.setJsUnitVersion("2.5");
   result.setId("An ID");
   result.setUserAgent("Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)");
   result.setRemoteAddress("Dummy Remote Address");
   result.setBaseURL("about:mozilla");
   result.setTime(4.3);
   result.setTestCaseStrings(
       new String[] {
         "testFoo|1.3|S||",
         "testFoo|1.3|E|Test Error Message|",
         "testFoo|1.3|F|Test Failure Message|"
       });
 }