Added a main so I can see the output as it is running.
This commit is contained in:
parent
aa67340daa
commit
951af5700e
|
@ -3012,4 +3012,20 @@ public class XMLImportStructureTest extends TestCase {
|
|||
|
||||
assertTrue("testXMLImportStructure", true);
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
System.out.println("In main of XMLImportStructureTest");
|
||||
|
||||
XMLImportStructureTest m_XMLImportStructureTest = new XMLImportStructureTest();
|
||||
|
||||
try {
|
||||
m_XMLImportStructureTest.setUp();
|
||||
m_XMLImportStructureTest.testXMLImportStructure();
|
||||
} catch(Exception e) {
|
||||
System.out.println("Exception with m_XMLImportStructureTest.setUp: " + e.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue