/** * @expectedException \Sokil\Mongo\Exception * @expectedExceptionMessage Must be instance of \Sokil\Mongo\GridFS */ public function testGetGridFs_SpecifiedGridFSClassInMappingIsNotInstanceOfGridFS() { $this->database->map(array('gridfs' => '\\stdClass')); $this->database->getGridFS('gridfs'); $this->fail('Must be exception'); }