示例#1
0
 /**
  * Test apc cache service alias
  * 
  * @requires extension apc
  */
 public function testAppCallAPCuServiceAlias()
 {
     $config = array();
     $app = new \Duality\App(dirname(__FILE__) . '/../..', $config);
     $expected = '\\Duality\\Service\\Cache';
     $this->assertInstanceOf($expected, $app->getCache());
 }