Example #1
0
 /**
  * @covers System_Application::__construct
  * @covers System_Application::<protected>
  */
 public function testConstructor()
 {
     $app = new System_Application('test');
     self::assertContains('System_', $app->getAutoloader()->getRegisteredNamespaces());
     self::assertTrue(isset(Zend_Registry::getInstance()->{System_Application::APPLICATION}));
 }