--TEST-- Test 6: Extends Test --SKIPIF-- --FILE-- createElement("title"); $titleElement->appendChild($this->createTextNode($title)); $authorElement = $this->createElement("author"); $authorElement->appendChild($this->createTextNode($author)); $bookElement = $this->createElement("book"); $bookElement->appendChild($titleElement); $bookElement->appendChild($authorElement); $this->documentElement->appendChild($bookElement); } } $dom = new books; $dom->load(__DIR__."/book.xml"); $dom->addBook("PHP de Luxe", "Richard Samar, Christian Stocker"); print $dom->saveXML(); ?> --EXPECT-- The Grapes of Wrath John Steinbeck The Pearl John Steinbeck PHP de LuxeRichard Samar, Christian Stocker