New perl automated script.

git-svn-id: svn://10.0.0.236/trunk@51147 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
leila.garin%eng.sun.com
1999-10-19 18:48:53 +00:00
parent 494eaeb121
commit 46abc39ebf
83 changed files with 1346 additions and 37 deletions

View File

@@ -66,6 +66,7 @@ public class CharacterDataImpl_getData extends BWBaseTest implements Execution
Document d = (Document)tobj;
if (d != null)
{
try {
String str = "Creating a new Text Node";
Text tn = d.createTextNode(str);
if (tn == null) {
@@ -84,6 +85,10 @@ public class CharacterDataImpl_getData extends BWBaseTest implements Execution
return BWBaseTest.FAILED;
}
}
} catch (DOMException e) {
TestLoader.logErrPrint("Caught DOMException " );
return BWBaseTest.FAILED;
}
} else {
System.out.println("Document is NULL..");
return BWBaseTest.FAILED;