Changeset 1229
- Timestamp:
- 01/12/08 18:51:35 (9 months ago)
- Files:
-
- trunk/src/main/php/net/stubbles/xml/rss/stubRSSFeedGenerator.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/xml/rss/stubRSSFeedItem.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLAttributeAnnotation.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLFragmentAnnotation.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLIgnoreAnnotation.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLMatcherAnnotation.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLMethodsAnnotation.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLPropertiesAnnotation.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLStrategyAnnotation.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLTagAnnotation.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/xml/serializer/stubXMLSerializer.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/xml/stubDomXMLStreamWriter.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/xml/stubLibXmlXMLStreamWriter.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/xml/stubXMLException.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/xml/stubXMLStreamWriter.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/xml/stubXMLXIncludeStreamWrapper.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/xml/unserializer/stubXMLUnserializer.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/xml/xsl/stubXSLCallback.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/xml/xsl/stubXSLMethodAnnotation.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/xml/xsl/stubXSLProcessor.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/xml/xsl/util/stubXSLImageDimensions.php (modified) (1 diff)
- trunk/src/test/php/net/stubbles/xml/rss/stubRSSFeedGeneratorTestCase.php (modified) (2 diffs)
- trunk/src/test/php/net/stubbles/xml/rss/stubRSSFeedItemTestCase.php (modified) (2 diffs)
- trunk/src/test/php/net/stubbles/xml/serializer/annotations/stubXMLMatcherAnnotationTestCase.php (modified) (3 diffs)
- trunk/src/test/php/net/stubbles/xml/serializer/stubXMLSerializerStrategyTestCase.php (modified) (3 diffs)
- trunk/src/test/php/net/stubbles/xml/serializer/stubXMLSerializerTestCase.php (modified) (3 diffs)
- trunk/src/test/php/net/stubbles/xml/stubDomXMLStreamWriterTestCase.php (modified) (2 diffs)
- trunk/src/test/php/net/stubbles/xml/stubLibXmlXMLStreamWriterTestCase.php (modified) (2 diffs)
- trunk/src/test/php/net/stubbles/xml/unserializer/stubXMLUnserializerTestCase.php (modified) (1 diff)
- trunk/src/test/php/net/stubbles/xml/xsl/stubXSLCallbackTestCase.php (modified) (3 diffs)
- trunk/src/test/php/net/stubbles/xml/xsl/stubXSLProcessorTestCase.php (modified) (3 diffs)
- trunk/src/test/php/net/stubbles/xml/xsl/util/stubXSLImageDimensionsTestCase.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/main/php/net/stubbles/xml/rss/stubRSSFeedGenerator.php
r1127 r1229 7 7 * @subpackage xml_rss 8 8 */ 9 stubClassLoader::load('net .stubbles.xml.rss.stubRSSFeedItem',10 'net .stubbles.xml.stubXMLStreamWriter'9 stubClassLoader::load('net::stubbles::xml::rss::stubRSSFeedItem', 10 'net::stubbles::xml::stubXMLStreamWriter' 11 11 ); 12 12 /** trunk/src/main/php/net/stubbles/xml/rss/stubRSSFeedItem.php
r1127 r1229 7 7 * @subpackage xml_rss 8 8 */ 9 stubClassLoader::load('net .stubbles.xml.stubXMLStreamWriter');9 stubClassLoader::load('net::stubbles::xml::stubXMLStreamWriter'); 10 10 /** 11 11 * Class for a rss 2.0 feed item. trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLAttributeAnnotation.php
r1127 r1229 7 7 * @subpackage xml_serializer_annotations 8 8 */ 9 stubClassLoader::load('net .stubbles.reflection.annotations.stubAnnotation',10 'net .stubbles.reflection.annotations.stubAbstractAnnotation'9 stubClassLoader::load('net::stubbles::reflection::annotations::stubAnnotation', 10 'net::stubbles::reflection::annotations::stubAbstractAnnotation' 11 11 ); 12 12 /** trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLFragmentAnnotation.php
r1127 r1229 7 7 * @subpackage xml_serializer_annotations 8 8 */ 9 stubClassLoader::load('net .stubbles.reflection.annotations.stubAnnotation',10 'net .stubbles.reflection.annotations.stubAbstractAnnotation'9 stubClassLoader::load('net::stubbles::reflection::annotations::stubAnnotation', 10 'net::stubbles::reflection::annotations::stubAbstractAnnotation' 11 11 ); 12 12 /** trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLIgnoreAnnotation.php
r1127 r1229 7 7 * @subpackage xml_serializer_annotations 8 8 */ 9 stubClassLoader::load('net .stubbles.reflection.annotations.stubAnnotation',10 'net .stubbles.reflection.annotations.stubAbstractAnnotation'9 stubClassLoader::load('net::stubbles::reflection::annotations::stubAnnotation', 10 'net::stubbles::reflection::annotations::stubAbstractAnnotation' 11 11 ); 12 12 /** trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLMatcherAnnotation.php
r1127 r1229 7 7 * @subpackage xml_serializer_annotations 8 8 */ 9 stubClassLoader::load('net .stubbles.reflection.annotations.stubAnnotation',10 'net .stubbles.reflection.annotations.stubAbstractAnnotation');9 stubClassLoader::load('net::stubbles::reflection::annotations::stubAnnotation', 10 'net::stubbles::reflection::annotations::stubAbstractAnnotation'); 11 11 12 12 /** trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLMethodsAnnotation.php
r1127 r1229 7 7 * @subpackage xml_serializer_annotations 8 8 */ 9 stubClassLoader::load('net .stubbles.xml.serializer.annotations.stubXMLPropertiesAnnotation');9 stubClassLoader::load('net::stubbles::xml::serializer::annotations::stubXMLPropertiesAnnotation'); 10 10 /** 11 11 * Annotation for XMLSerializer trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLPropertiesAnnotation.php
r1127 r1229 7 7 * @subpackage xml_serializer_annotations 8 8 */ 9 stubClassLoader::load('net .stubbles.reflection.annotations.stubAnnotation',10 'net .stubbles.reflection.annotations.stubAbstractAnnotation'9 stubClassLoader::load('net::stubbles::reflection::annotations::stubAnnotation', 10 'net::stubbles::reflection::annotations::stubAbstractAnnotation' 11 11 ); 12 12 /** trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLStrategyAnnotation.php
r1127 r1229 7 7 * @subpackage xml_serializer_annotations 8 8 */ 9 stubClassLoader::load('net .stubbles.reflection.annotations.stubAnnotation',10 'net .stubbles.reflection.annotations.stubAbstractAnnotation'9 stubClassLoader::load('net::stubbles::reflection::annotations::stubAnnotation', 10 'net::stubbles::reflection::annotations::stubAbstractAnnotation' 11 11 ); 12 12 /** trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLTagAnnotation.php
r1127 r1229 7 7 * @subpackage xml_serializer_annotations 8 8 */ 9 stubClassLoader::load('net .stubbles.reflection.annotations.stubAnnotation',10 'net .stubbles.reflection.annotations.stubAbstractAnnotation'9 stubClassLoader::load('net::stubbles::reflection::annotations::stubAnnotation', 10 'net::stubbles::reflection::annotations::stubAbstractAnnotation' 11 11 ); 12 12 /** trunk/src/main/php/net/stubbles/xml/serializer/stubXMLSerializer.php
r1127 r1229 7 7 * @subpackage xml_serializer 8 8 */ 9 stubClassLoader::load('net .stubbles.xml.serializer.annotations.stubXMLTagAnnotation',10 'net .stubbles.xml.serializer.annotations.stubXMLFragmentAnnotation',11 'net .stubbles.xml.serializer.annotations.stubXMLAttributeAnnotation',12 'net .stubbles.xml.serializer.annotations.stubXMLIgnoreAnnotation',13 'net .stubbles.xml.serializer.annotations.stubXMLPropertiesAnnotation',14 'net .stubbles.xml.serializer.annotations.stubXMLMethodsAnnotation',15 'net .stubbles.xml.serializer.annotations.stubXMLMatcherAnnotation',16 'net .stubbles.xml.serializer.annotations.stubXMLStrategyAnnotation',17 'net .stubbles.reflection.reflection'9 stubClassLoader::load('net::stubbles::xml::serializer::annotations::stubXMLTagAnnotation', 10 'net::stubbles::xml::serializer::annotations::stubXMLFragmentAnnotation', 11 'net::stubbles::xml::serializer::annotations::stubXMLAttributeAnnotation', 12 'net::stubbles::xml::serializer::annotations::stubXMLIgnoreAnnotation', 13 'net::stubbles::xml::serializer::annotations::stubXMLPropertiesAnnotation', 14 'net::stubbles::xml::serializer::annotations::stubXMLMethodsAnnotation', 15 'net::stubbles::xml::serializer::annotations::stubXMLMatcherAnnotation', 16 'net::stubbles::xml::serializer::annotations::stubXMLStrategyAnnotation', 17 'net::stubbles::reflection::reflection' 18 18 ); 19 19 /** trunk/src/main/php/net/stubbles/xml/stubDomXMLStreamWriter.php
r1127 r1229 9 9 */ 10 10 11 stubClassLoader::load('net .stubbles.xml.stubXMLStreamWriter',12 'net .stubbles.xml.stubAbstractXMLStreamWriter');11 stubClassLoader::load('net::stubbles::xml::stubXMLStreamWriter', 12 'net::stubbles::xml::stubAbstractXMLStreamWriter'); 13 13 14 14 /** trunk/src/main/php/net/stubbles/xml/stubLibXmlXMLStreamWriter.php
r1127 r1229 8 8 */ 9 9 10 stubClassLoader::load('net .stubbles.xml.stubXMLStreamWriter',11 'net .stubbles.xml.stubAbstractXMLStreamWriter');10 stubClassLoader::load('net::stubbles::xml::stubXMLStreamWriter', 11 'net::stubbles::xml::stubAbstractXMLStreamWriter'); 12 12 13 13 /** trunk/src/main/php/net/stubbles/xml/stubXMLException.php
r1127 r1229 7 7 * @subpackage xml 8 8 */ 9 stubClassLoader::load('net .stubbles.lang.exceptions.stubChainedException');9 stubClassLoader::load('net::stubbles::lang::exceptions::stubChainedException'); 10 10 /** 11 11 * XML Exception trunk/src/main/php/net/stubbles/xml/stubXMLStreamWriter.php
r1127 r1229 8 8 * @subpackage xml 9 9 */ 10 stubClassLoader::load('net .stubbles.xml.stubXMLException');10 stubClassLoader::load('net::stubbles::xml::stubXMLException'); 11 11 /** 12 12 * Interface to create XML documents trunk/src/main/php/net/stubbles/xml/stubXMLXIncludeStreamWrapper.php
r1127 r1229 7 7 * @subpackage xml 8 8 */ 9 stubClassLoader::load('net .stubbles.lang.exceptions.stubIOException',10 'net .stubbles.util.stubRegistry',11 'net .stubbles.xml.stubXMLException',12 'net .stubbles.xml.xsl.stubXSLProcessor'9 stubClassLoader::load('net::stubbles::lang::exceptions::stubIOException', 10 'net::stubbles::util::stubRegistry', 11 'net::stubbles::xml.stubXMLException', 12 'net::stubbles::xml.xsl.stubXSLProcessor' 13 13 ); 14 14 /** trunk/src/main/php/net/stubbles/xml/unserializer/stubXMLUnserializer.php
r1172 r1229 7 7 * @subpackage xml_unserializer 8 8 */ 9 stubClassLoader::load('net .stubbles.xml.unserializer.stubXMLUnserializerOption');9 stubClassLoader::load('net::stubbles::xml::unserializer::stubXMLUnserializerOption'); 10 10 /** 11 11 * Class to read XML files and turn them into simple PHP types. trunk/src/main/php/net/stubbles/xml/xsl/stubXSLCallback.php
r1127 r1229 7 7 * @subpackage xml_xsl 8 8 */ 9 stubClassLoader::load('net .stubbles.xml.xsl.stubXSLCallbackException',10 'net .stubbles.xml.xsl.stubXSLMethodAnnotation'9 stubClassLoader::load('net::stubbles::xml::xsl::stubXSLCallbackException', 10 'net::stubbles::xml::xsl::stubXSLMethodAnnotation' 11 11 ); 12 12 /** trunk/src/main/php/net/stubbles/xml/xsl/stubXSLMethodAnnotation.php
r1127 r1229 7 7 * @subpackage xml_xsl 8 8 */ 9 stubClassLoader::load('net .stubbles.reflection.annotations.stubAnnotation',10 'net .stubbles.reflection.annotations.stubAbstractAnnotation'9 stubClassLoader::load('net::stubbles::reflection::annotations::stubAnnotation', 10 'net::stubbles::reflection::annotations::stubAbstractAnnotation' 11 11 ); 12 12 /** trunk/src/main/php/net/stubbles/xml/xsl/stubXSLProcessor.php
r1127 r1229 7 7 * @subpackage xml_xsl 8 8 */ 9 stubClassLoader::load('net .stubbles.xml.xsl.stubXSLCallback',10 'net .stubbles.xml.xsl.stubXSLProcessorException',11 'net .stubbles.lang.stubClonable'9 stubClassLoader::load('net::stubbles::xml::xsl::stubXSLCallback', 10 'net::stubbles::xml::xsl::stubXSLProcessorException', 11 'net::stubbles::lang::stubClonable' 12 12 ); 13 13 /** trunk/src/main/php/net/stubbles/xml/xsl/util/stubXSLImageDimensions.php
r1127 r1229 7 7 * @subpackage xml_xsl_util 8 8 */ 9 stubClassLoader::load('net .stubbles.xml.stubXMLStreamWriter',10 'net .stubbles.xml.xsl.stubXSLCallbackException'9 stubClassLoader::load('net::stubbles::xml::stubXMLStreamWriter', 10 'net::stubbles::xml::xsl::stubXSLCallbackException' 11 11 ); 12 12 /** trunk/src/test/php/net/stubbles/xml/rss/stubRSSFeedGeneratorTestCase.php
r169 r1229 1 1 <?php 2 2 /** 3 * Test for net .stubbles.xml.rss.stubRSSFeedGenerator3 * Test for net::stubbles::xml::rss::stubRSSFeedGenerator. 4 4 * 5 5 * @author Frank Kleine <mikey@stubbles.net> … … 7 7 * @subpackage xml_rss_test 8 8 */ 9 stubClassLoader::load('net .stubbles.xml.rss.stubRSSFeedGenerator');9 stubClassLoader::load('net::stubbles::xml::rss::stubRSSFeedGenerator'); 10 10 Mock::generate('stubXMLStreamWriter'); 11 11 /** 12 * Test for net .stubbles.xml.rss.stubRSSFeedGenerator12 * Test for net::stubbles::xml::rss::stubRSSFeedGenerator. 13 13 * 14 14 * @package stubbles trunk/src/test/php/net/stubbles/xml/rss/stubRSSFeedItemTestCase.php
r169 r1229 1 1 <?php 2 2 /** 3 * Test for net .stubbles.xml.rss.stubRSSFeedItem3 * Test for net::stubbles::xml::rss::stubRSSFeedItem. 4 4 * 5 5 * @author Frank Kleine <mikey@stubbles.net> … … 7 7 * @subpackage xml_rss_test 8 8 */ 9 stubClassLoader::load('net .stubbles.xml.rss.stubRSSFeedItem');9 stubClassLoader::load('net::stubbles::xml::rss::stubRSSFeedItem'); 10 10 Mock::generate('stubXMLStreamWriter'); 11 11 /** 12 * Test for net .stubbles.xml.rss.stubRSSFeedItem12 * Test for net::stubbles::xml::rss::stubRSSFeedItem. 13 13 * 14 14 * @package stubbles trunk/src/test/php/net/stubbles/xml/serializer/annotations/stubXMLMatcherAnnotationTestCase.php
r851 r1229 1 1 <?php 2 2 /** 3 * Test for net .stubbles.xml.serializer.annotation.stubXMMatcherAnnotation3 * Test for net::stubbles::xml::serializer::annotations::stubXMLMatcherAnnotation. 4 4 * 5 5 * @author Stephan Schmidt <schst@stubbles.net> … … 7 7 * @subpackage xml_test 8 8 */ 9 stubClassLoader::load('net .stubbles.xml.serializer.annotations.stubXMLMatcherAnnotation');9 stubClassLoader::load('net::stubbles::xml::serializer::annotations::stubXMLMatcherAnnotation'); 10 10 11 11 /** … … 21 21 22 22 /** 23 * Test for XMLSerializer23 * Test for net::stubbles::xml::serializer::annotations::stubXMLMatcherAnnotation. 24 24 * 25 25 * @author Stephan Schmidt <schst@stubbles.net> trunk/src/test/php/net/stubbles/xml/serializer/stubXMLSerializerStrategyTestCase.php
r1017 r1229 1 1 <?php 2 2 /** 3 * Test for XMLSerializer3 * Test for net::stubbles::xml::serializer::stubXMLSerializer. 4 4 * 5 5 * @author Stephan Schmidt <schst@stubbles.net> … … 7 7 * @subpackage xml_test 8 8 */ 9 stubClassLoader::load('net .stubbles.xml.stubDomXMLStreamWriter',10 'net .stubbles.xml.serializer.stubXMLSerializer');9 stubClassLoader::load('net::stubbles::xml::stubDomXMLStreamWriter', 10 'net::stubbles::xml::serializer::stubXMLSerializer'); 11 11 12 12 /** … … 86 86 } 87 87 /** 88 * Test for XMLSerializer88 * Test for net::stubbles::xml::serializer::stubXMLSerializer. 89 89 * 90 90 * @author Stephan Schmidt <schst@stubbles.net> trunk/src/test/php/net/stubbles/xml/serializer/stubXMLSerializerTestCase.php
r1062 r1229 1 1 <?php 2 2 /** 3 * Test for XMLSerializer3 * Test for net::stubbles::xml::serializer::stubXMLSerializer. 4 4 * 5 5 * @author Stephan Schmidt <schst@stubbles.net> … … 8 8 * @todo Split this into smaller test cases 9 9 */ 10 stubClassLoader::load('net .stubbles.xml.stubDomXMLStreamWriter',11 'net .stubbles.xml.serializer.stubXMLSerializer');10 stubClassLoader::load('net::stubbles::xml::stubDomXMLStreamWriter', 11 'net::stubbles::xml::serializer::stubXMLSerializer'); 12 12 13 13 /** … … 246 246 247 247 /** 248 * Test for XMLSerializer248 * Test for net::stubbles::xml::serializer::stubXMLSerializer. 249 249 * 250 250 * @author Stephan Schmidt <schst@stubbles.net> trunk/src/test/php/net/stubbles/xml/stubDomXMLStreamWriterTestCase.php
r1058 r1229 1 1 <?php 2 2 /** 3 * Test for stubDomXMLStreamWriter3 * Test for net::stubbles::xml::stubDomXMLStreamWriter. 4 4 * 5 5 * @author Stephan Schmidt <schst@stubbles.net> … … 7 7 * @subpackage xml_test 8 8 */ 9 stubClassLoader::load('net .stubbles.xml.stubDomXMLStreamWriter');9 stubClassLoader::load('net::stubbles::xml::stubDomXMLStreamWriter'); 10 10 11 11 /** 12 * Test for stubDomXMLStreamWriter12 * Test for net::stubbles::xml::stubDomXMLStreamWriter. 13 13 * 14 14 * @author Stephan Schmidt <schst@stubbles.net> trunk/src/test/php/net/stubbles/xml/stubLibXmlXMLStreamWriterTestCase.php
r1019 r1229 1 1 <?php 2 2 /** 3 * Test for stubLibXmlXMLStreamWriter3 * Test for net::stubbles::xml::stubLibXmlXMLStreamWriter. 4 4 * 5 5 * @author Stephan Schmidt <schst@stubbles.net> … … 7 7 * @subpackage xml_test 8 8 */ 9 stubClassLoader::load('net .stubbles.xml.stubLibXmlXMLStreamWriter');9 stubClassLoader::load('net::stubbles::xml::stubLibXmlXMLStreamWriter'); 10 10 11 11 /** 12 * Test for stubLibXmlXMLStreamWriter12 * Test for net::stubbles::xml::stubLibXmlXMLStreamWriter. 13 13 * 14 14 * @author Stephan Schmidt <schst@stubbles.net> trunk/src/test/php/net/stubbles/xml/unserializer/stubXMLUnserializerTestCase.php
r1172 r1229 7 7 * @subpackage xml_unserializer_test 8 8 */ 9 stubClassLoader::load('net .stubbles.xml.unserializer.stubXMLUnserializer');9 stubClassLoader::load('net::stubbles::xml::unserializer::stubXMLUnserializer'); 10 10 11 11 /** trunk/src/test/php/net/stubbles/xml/xsl/stubXSLCallbackTestCase.php
r180 r1229 1 1 <?php 2 2 /** 3 * Test for net .stubbles.xml.xsl.stubXSLCallback3 * Test for net::stubbles::xml::xsl::stubXSLCallback. 4 4 * 5 5 * @author Frank Kleine <mikey@stubbles.net> … … 7 7 * @subpackage xml_xsl_test 8 8 */ 9 stubClassLoader::load('net .stubbles.xml.xsl.stubXSLCallback');9 stubClassLoader::load('net::stubbles::xml::xsl::stubXSLCallback'); 10 10 class TestXSLCallback extends stubBaseObject 11 11 { … … 65 65 } 66 66 /** 67 * Test for net .stubbles.xml.xsl.stubXSLCallback67 * Test for net::stubbles::xml::xsl::stubXSLCallback. 68 68 * 69 69 * @package stubbles trunk/src/test/php/net/stubbles/xml/xsl/stubXSLProcessorTestCase.php
r394 r1229 1 1 <?php 2 2 /** 3 * Test for net .stubbles.xml.xsl.stubXSLProcessor3 * Test for net::stubbles::xml::xsl::stubXSLProcessor. 4 4 * 5 5 * @author Frank Kleine <mikey@stubbles.net> … … 7 7 * @subpackage xml_xsl_test 8 8 */ 9 stubClassLoader::load('net .stubbles.xml.xsl.stubXSLProcessor');9 stubClassLoader::load('net::stubbles::xml::xsl::stubXSLProcessor'); 10 10 Mock::generate('XSLTProcessor'); 11 11 Mock::generate('stubObject'); … … 35 35 } 36 36 /** 37 * Test for net .stubbles.xml.xsl.stubXSLProcessor37 * Test for net::stubbles::xml::xsl::stubXSLProcessor. 38 38 * 39 39 * @package stubbles trunk/src/test/php/net/stubbles/xml/xsl/util/stubXSLImageDimensionsTestCase.php
r290 r1229 1 1 <?php 2 2 /** 3 * Test for net .stubbles.xml.xsl.util.stubXSLImageDimensions3 * Test for net::stubbles::xml::xsl::util::stubXSLImageDimensions. 4 4 * 5 5 * @author Frank Kleine <mikey@stubbles.net> … … 7 7 * @subpackage xml_xsl_util_test 8 8 */ 9 stubClassLoader::load('net .stubbles.xml.xsl.util.stubXSLImageDimensions');9 stubClassLoader::load('net::stubbles::xml::xsl::util::stubXSLImageDimensions'); 10 10 Mock::generate('stubXMLStreamWriter'); 11 11 /** 12 * Test for net .stubbles.xml.xsl.util.stubXSLImageDimensions12 * Test for net::stubbles::xml::xsl::util::stubXSLImageDimensions. 13 13 * 14 14 * @package stubbles
