Changeset 290

Show
Ignore:
Timestamp:
02/21/07 17:53:16 (2 years ago)
Author:
mikey
Message:

moved images from src/test/php/* to src/test/resources/img

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/test/php/net/stubbles/xml/xsl/util/stubXSLImageDimensionsTestCase.php

    r193 r290  
    4545    { 
    4646        $this->expectException('stubXSLCallbackException'); 
    47         $this->xslImageDimensions->getImageDimensions(dirname(__FILE__) . '/doesNotExist.jpg'); 
     47        $this->xslImageDimensions->getImageDimensions(TEST_SRC_PATH . '/resources/img/doesNotExist.jpg'); 
    4848    } 
    4949     
     
    5454    { 
    5555        $this->expectException('stubXSLCallbackException'); 
    56         $this->xslImageDimensions->getImageDimensions(dirname(__FILE__) . '/invalid.gif'); 
     56        $this->xslImageDimensions->getImageDimensions(TEST_SRC_PATH . '/resources/img/invalid.gif'); 
    5757    } 
    5858     
     
    6969        $this->mockXMLStreamWriter->expect('writeEndElement', array()); 
    7070        $this->mockXMLStreamWriter->expect('clear', array()); 
    71         $this->xslImageDimensions->getImageDimensions(dirname(__FILE__) . '/stubbles.png'); 
     71        $this->xslImageDimensions->getImageDimensions(TEST_SRC_PATH . '/resources/img/stubbles.png'); 
    7272    } 
    7373}