1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <?php
- /*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Symfony\Tests\Component\ClassLoader;
- use Symfony\Component\ClassLoader\ClassCollectionLoader;
- class ClassCollectionLoaderTest extends \PHPUnit_Framework_TestCase
- {
- public function testFixNamespaceDeclarations()
- {
- $source = <<<EOF
- <?php
- namespace Foo;
- class Foo {}
- namespace Bar ;
- class Foo {}
- namespace Foo\Bar;
- class Foo {}
- namespace Foo\Bar\Bar
- {
- class Foo {}
- }
- namespace
- {
- class Foo {}
- }
- EOF;
- $expected = <<<EOF
- <?php
- namespace Foo
- {
- class Foo {}
- }
- namespace Bar
- {
- class Foo {}
- }
- namespace Foo\Bar
- {
- class Foo {}
- }
- namespace Foo\Bar\Bar
- {
- class Foo {}
- }
- namespace
- {
- class Foo {}
- }
- EOF;
- $this->assertEquals($expected, ClassCollectionLoader::fixNamespaceDeclarations($source));
- }
- /**
- * @expectedException InvalidArgumentException
- */
- public function testUnableToLoadClassException()
- {
- ClassCollectionLoader::load(array('SomeNotExistingClass'), '', 'foo', false);
- }
- }
|