Beispiel #1
0
 /**
  * Test the caching functionality
  *
  * @return void
  * @author Dan Cox
  */
 public function test_cache()
 {
     $di = new DI(CONFIG);
     $di->buildContainerFromCache('core');
     $this->assertTrue(class_exists('Wasp\\Application\\Cache\\AppCache'));
     $this->assertInstanceOf('Wasp\\Application\\Cache\\AppCache', $di->get('connections')->getDI());
 }