| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 | <?phpclass AutoloaderTest extends PHPUnit_Framework_TestCase {	/**	 * Test the Autoloader::map method.	 *	 * @group laravel	 */	public function testMapsCanBeRegistered()	{		Autoloader::map(array(			'Foo' => path('app').'models/foo.php',		));		$this->assertEquals(path('app').'models/foo.php', Autoloader::$mappings['Foo']);	}	/**	 * Test the Autoloader::alias method.	 *	 * @group laravel	 */	public function testAliasesCanBeRegistered()	{		Autoloader::alias('Foo\\Bar', 'Foo');		$this->assertEquals('Foo\\Bar', Autoloader::$aliases['Foo']);	}	/**	 * Test the Autoloader::directories method.	 *	 * @group laravel	 */	public function testPsrDirectoriesCanBeRegistered()	{		Autoloader::directories(array(			path('app').'foo'.DS.'bar',			path('app').'foo'.DS.'baz'.DS.DS,		));		$this->assertTrue(in_array(path('app').'foo'.DS.'bar'.DS, Autoloader::$directories));		$this->assertTrue(in_array(path('app').'foo'.DS.'baz'.DS, Autoloader::$directories));	}	/**	 * Test the Autoloader::namespaces method.	 *	 * @group laravel	 */	public function testNamespacesCanBeRegistered()	{		Autoloader::namespaces(array(			'Autoloader_1' => path('bundle').'autoload'.DS.'models',			'Autoloader_2' => path('bundle').'autoload'.DS.'libraries'.DS.DS,		));		$this->assertEquals(path('bundle').'autoload'.DS.'models'.DS, Autoloader::$namespaces['Autoloader_1\\']);		$this->assertEquals(path('bundle').'autoload'.DS.'libraries'.DS, Autoloader::$namespaces['Autoloader_2\\']);	}	/**	 * Test the loading of PSR-0 models and libraries.	 *	 * @group laravel	 */	public function testPsrLibrariesAndModelsCanBeLoaded()	{		$this->assertInstanceOf('User', new User);		$this->assertInstanceOf('Repositories\\User', new Repositories\User);	}	/**	 * Test the loading of hard-coded classes.	 *	 * @group laravel	 */	public function testHardcodedClassesCanBeLoaded()	{		Autoloader::map(array(			'Autoloader_HardCoded' => path('app').'models'.DS.'autoloader.php',		));		$this->assertInstanceOf('Autoloader_HardCoded', new Autoloader_HardCoded);	}	/**	 * Test the loading of classes mapped by namespaces.	 *	 * @group laravel	 */	public function testClassesMappedByNamespaceCanBeLoaded()	{		Autoloader::namespaces(array(			'Dashboard' => path('bundle').'dashboard'.DS.'models',		));		$this->assertInstanceOf('Dashboard\\Repository', new Dashboard\Repository);	}}
 |