예제 #1
0
 /**
  * @expectedException \RuntimeException
  */
 public function testGetCollectionNotFound()
 {
     $cm = new CollectionManager();
     $cm->addCollection(new Collection('events', '_events', ['output' => true]));
     $cm->getCollection('books');
 }