Changeset 164

Show
Ignore:
Timestamp:
01/28/07 18:10:51 (2 years ago)
Author:
mikey
Message:

added net.stubbles.xml.rss

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/main/php/net/stubbles/xml/stubXMLStreamWriter.php

    r97 r164  
    2222     * @param string $encoding 
    2323     */ 
    24     public function __construct($xmlVersion = '1.0', $encoding = 'ISO-8859-1'); 
     24    #public function __construct($xmlVersion = '1.0', $encoding = 'ISO-8859-1'); 
    2525 
    2626    /** 
  • trunk/src/test/php/net/stubbles/xml/XMLTestSuite.php

    r129 r164  
    44 * 
    55 * @author      Stephan Schmidt <schst@stubbles.net> 
     6 * @author      Frank Kleine <mikey@stubbles.net> 
    67 * @package     stubbles 
    78 * @subpackage  test 
     
    2122    { 
    2223        $this->TestSuite('All XML tests'); 
    23         $this->addTestFile(dirname(__FILE__) . '/stubDomXMLStreamWriterTestCase.php'); 
    24         $this->addTestFile(dirname(__FILE__) . '/stubLibXmlXMLStreamWriterTestCase.php'); 
    25         $this->addTestFile(dirname(__FILE__) . '/stubXMLSerializerTestCase.php'); 
     24        $dir = dirname(__FILE__); 
     25        $this->addTestFile($dir . '/stubDomXMLStreamWriterTestCase.php'); 
     26        $this->addTestFile($dir . '/stubLibXmlXMLStreamWriterTestCase.php'); 
     27        $this->addTestFile($dir . '/stubXMLSerializerTestCase.php'); 
     28         
     29        // rss 
     30        $this->addTestFile($dir . '/rss/stubRSSFeedGeneratorTestCase.php'); 
     31        $this->addTestFile($dir . '/rss/stubRSSFeedItemTestCase.php'); 
    2632    } 
    2733}