class and its subclasses.
| Method from org.apache.cactus.TestNoNameTestCase Detail: |
public void setUp() {
System.setProperty(BaseConfiguration.CACTUS_CONTEXT_URL_PROPERTY,
"http://localhost/dummy");
}
set cactus.contextURL as a system property. |
public void testNoNameJspTestCase() {
TestCase test;
test = new NoNameJspTestCase("testNoName");
executeRunBare(test);
}
Test subclass of JspTestCase.
Set the test name by constructor NoNameTestCase(String). |
public void testNoNameJspTestCaseWithSetName() {
TestCase test;
test = new NoNameJspTestCase();
test.setName("testNoName");
executeRunBare(test);
}
Test subclass of JspTestCase.
Set the test name by TestCase#setName(String). |
public void testNoNameServletTestCase() {
TestCase test;
test = new NoNameServletTestCase("testNoName");
executeRunBare(test);
}
Test subclass of ServletTestCase.
Set the test name by constructor NoNameTestCase(String). |
public void testNoNameServletTestCaseWithSetName() {
TestCase test;
test = new NoNameServletTestCase();
test.setName("testNoName");
executeRunBare(test);
}
Test subclass of ServletTestCase.
Set the test name by TestCase#setName(String). |
public void testNoNameTestCase() {
TestCase test;
test = new NoNameTestCase("testNoName");
executeRunBare(test);
}
Test subclass of AbstractCactusTestCase.
Set the test name by constructor NoNameTestCase(String). |
public void testNoNameTestCaseWithSetName() {
TestCase test;
test = new NoNameTestCase();
test.setName("testNoName");
executeRunBare(test);
}
Test subclass of AbstractCactusTestCase.
Set the test name by TestCase#setName(String). |