Changeset 1890

Show
Ignore:
Timestamp:
10/20/08 18:00:51 (3 months ago)
Author:
mikey
Message:

proper use of DOMDocument

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • framework/trunk/src/test/php/net/stubbles/websites/xml/skin/stubCachingSkinGeneratorTestCase.php

    r1763 r1890  
    124124    public function nonCached() 
    125125    { 
    126         $result = DOMDocument::loadXML('<?xml version="1.0" encoding="iso-8859-1"?><foo>bar</foo>'); 
     126        $result = new DOMDocument(); 
     127        $result->loadXML('<?xml version="1.0" encoding="iso-8859-1"?><foo>bar</foo>'); 
    127128        $this->mockSkinGenerator->expects($this->once()) 
    128129                                ->method('getSkinKey')