diff options
author | Uwe Steinmann <steinm@php.net> | 2000-03-03 12:38:20 +0000 |
---|---|---|
committer | Uwe Steinmann <steinm@php.net> | 2000-03-03 12:38:20 +0000 |
commit | dd4f37a4cfed47d92a475a949a1efbb2c6f60a7f (patch) | |
tree | 75ef9d1f33acb5df5d0830eaae67f7e61dd0de17 /tests | |
parent | 9318964f25225bb2fd218efd952c8962ac1952b5 (diff) | |
download | php-git-dd4f37a4cfed47d92a475a949a1efbb2c6f60a7f.tar.gz |
- tiny changes to testscript and domxml
Diffstat (limited to 'tests')
-rw-r--r-- | tests/testdom | 2 | ||||
-rw-r--r-- | tests/testhyperwave | 20 |
2 files changed, 11 insertions, 11 deletions
diff --git a/tests/testdom b/tests/testdom index 923a88491d..a2ba53d186 100644 --- a/tests/testdom +++ b/tests/testdom @@ -82,7 +82,7 @@ $rootnode = $dom->root(); /* This one creates a dom tree made of php objects */ echo "Test 2: creating a tree with php objects\n"; $dom = xmltree($xmlstr); -//$dom->root->name = "section"; +$dom->root->name = "section"; var_dump($dom); echo $dom->root->name; echo "\n"; diff --git a/tests/testhyperwave b/tests/testhyperwave index 973489cf34..f7de5284dd 100644 --- a/tests/testhyperwave +++ b/tests/testhyperwave @@ -1,10 +1,10 @@ <? - $id = 190867; // A plain/text document + $id = 187852; // A plain/text document $collid = 169828; // A collection $query = "Name=m*"; // Search query for test_9 $host = "gehtnix"; $username = "steinm"; - $password = "akli9132"; + $password = ""; $connect = hw_connect($host, 418, $username, $password); if(hw_error($connect)) { @@ -14,14 +14,14 @@ // Set all test to 'yes' if they shall be executed $test_1 = "yes"; // Get the text document with id $id and output it - $test_2 = "yes"; // Check if id $id is in $collid - $test_3 = "yes"; // Convert object record to object array and back - $test_4 = "yes"; // Get object record of object with id $id - $test_5 = "yes"; // List children of $collid - $test_6 = "yes"; // List parents of $id - $test_7 = "yes"; // Insert a new text document - $test_8 = "yes"; // Remove the just inserted text document - $test_9 = "yes"; // Searching for objects with Name $query + $test_2 = "no"; // Check if id $id is in $collid + $test_3 = "no"; // Convert object record to object array and back + $test_4 = "no"; // Get object record of object with id $id + $test_5 = "no"; // List children of $collid + $test_6 = "no"; // List parents of $id + $test_7 = "no"; // Insert a new text document + $test_8 = "no"; // Remove the just inserted text document + $test_9 = "no"; // Searching for objects with Name $query /* Lists an object array */ |