hanged made to these file
Added new api test entries in BWTestClass files Added UNSUPPORTED methods in BWBaseTest/TestLoader Update DoucmentImpl accroding to java DOM version. Did correct check for retrun values in ElementImpl_removeAttribute_String_1.java ElementImpl_setAttributeNode_Attr_1.java NamedNodeMapImpl_setNamedItem_Node_1.java git-svn-id: svn://10.0.0.236/trunk@61141 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -148,6 +148,7 @@ public class TestLoader extends Applet implements DocumentLoadListener
|
||||
String testDir = ".";
|
||||
String testFile = TESTFILE;
|
||||
|
||||
System.out.println("Inside LoadTest");
|
||||
// Set Test directory
|
||||
testDir = propTable.getProperty("BW_TESTDIR");
|
||||
if (testDir == null) testDir=".";
|
||||
@@ -239,7 +240,10 @@ public class TestLoader extends Applet implements DocumentLoadListener
|
||||
try {
|
||||
System.out.println("################ Starting test ...");
|
||||
if (((BWBaseTest)classObj).execute(targetObj)) {
|
||||
txtPrint(s, "PASSED");
|
||||
if (((BWBaseTest)classObj).isUnsupported())
|
||||
txtPrint(s, "UNSUPPORTED METHOD");
|
||||
else
|
||||
txtPrint(s, "PASSED");
|
||||
System.out.println("################ passed");
|
||||
} else {
|
||||
txtPrint(s, "FAILED");
|
||||
|
||||
Reference in New Issue
Block a user