XMLCatalogBuildFileTestpublic class XMLCatalogBuildFileTest extends org.apache.tools.ant.BuildFileTest BuildFileTest testcases for org.apache.tools.ant.types.XMLCatalog |
Constructors Summary |
---|
public XMLCatalogBuildFileTest(String name)
super(name);
|
Methods Summary |
---|
public void | setUp()
| public void | tearDown()
| public void | testDocumentNoCatalog()
configureProject("src/etc/testcases/types/xmlcatalog.xml");
expectPropertySet("testdocumentnocatalog", "val3",
"A stitch in time saves nine");
| public void | testDocumentWithCatalog()
configureProject("src/etc/testcases/types/xmlcatalog.xml");
expectPropertySet("testdocumentwithcatalog", "val4",
"No news is good news");
| public void | testEntityNoCatalog()
configureProject("src/etc/testcases/types/xmlcatalog.xml");
expectPropertySet("testentitynocatalog", "val1",
"A stitch in time saves nine");
| public void | testEntityWithCatalog()
configureProject("src/etc/testcases/types/xmlcatalog.xml");
expectPropertySet("testentitywithcatalog", "val2",
"No news is good news");
|
|