stevseea                Mon May 19 12:49:54 2008 UTC

  Removed files:               
    /php-src/ext/dom    DOMElement_hasAttributes_basic.phpt 
                        DOMComment_appendData_basic.phpt 

  Modified files:              
    /php-src/ext/dom/tests      DOMComment_appendData_basic.phpt 
                                DOMElement_hasAttributes_basic.phpt 
  Log:
  Moving DOM tests to correct folder.
  
http://cvs.php.net/viewvc.cgi/php-src/ext/dom/tests/DOMComment_appendData_basic.phpt?r1=1.1&r2=1.2&diff_format=u
Index: php-src/ext/dom/tests/DOMComment_appendData_basic.phpt
diff -u /dev/null php-src/ext/dom/tests/DOMComment_appendData_basic.phpt:1.2
--- /dev/null   Mon May 19 12:49:54 2008
+++ php-src/ext/dom/tests/DOMComment_appendData_basic.phpt      Mon May 19 
12:49:54 2008
@@ -0,0 +1,21 @@
+--TEST--
+Test adding data to a DOMComment
+--CREDITS--
+Andrew Larssen <[EMAIL PROTECTED]>
+London TestFest 2008
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
+--FILE--
+<?php
+
+$dom = new DomDocument();
+$comment = $dom->createComment('test-comment');
+$comment->appendData('-more-data');
+$dom->appendChild($comment);
+$dom->saveXML();
+echo $dom->saveXML();
+
+?>
+--EXPECTF--
+<?xml version="1.0"?>
+<!--test-comment-more-data-->
\ No newline at end of file
http://cvs.php.net/viewvc.cgi/php-src/ext/dom/tests/DOMElement_hasAttributes_basic.phpt?r1=1.1&r2=1.2&diff_format=u
Index: php-src/ext/dom/tests/DOMElement_hasAttributes_basic.phpt
diff -u /dev/null php-src/ext/dom/tests/DOMElement_hasAttributes_basic.phpt:1.2
--- /dev/null   Mon May 19 12:49:54 2008
+++ php-src/ext/dom/tests/DOMElement_hasAttributes_basic.phpt   Mon May 19 
12:49:54 2008
@@ -0,0 +1,49 @@
+--TEST--
+DOMNode: hasAttributes() 
+--CREDITS--
+James Lewis <[EMAIL PROTECTED]>
+#TestFest 2008
+--FILE--
+<?php
+require_once("dom_test.inc");
+
+$dom = new DOMDocument;
+$dom->loadXML($xmlstr);
+if(!$dom) {
+  echo "Error while parsing the document\n";
+  exit;
+}
+
+$element = $dom->documentElement;
+
+echo "Verify that we have a DOMElement object:\n";
+var_dump($element);
+
+echo "\nElement should have attributes:\n";
+var_dump($element->hasAttributes()); 
+
+$nodelist=$dom->getElementsByTagName('tbody') ; 
+$element = $nodelist->item(0);
+
+echo "\nVerify that we have a DOMElement object:\n";
+var_dump($element);
+
+echo "\nElement should have no attributes:\n"; 
+var_dump($element->hasAttributes()) 
+
+
+?>
+--EXPECTF--
+Verify that we have a DOMElement object:
+object(DOMElement)#%d (0) {
+}
+
+Element should have attributes:
+bool(true)
+
+Verify that we have a DOMElement object:
+object(DOMElement)#%d (0) {
+}
+
+Element should have no attributes:
+bool(false)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to