public function testCreateNoConnectionException() { $db = new MongoDb(array('host' => '__invalid__', 'autoConnect' => false)); $this->assertException('Could not connect to the database.', function () use($db) { $db->create(null); }); }
public function testCreateNoConnectionException() { $db = new MongoDb(array('host' => '__invalid__', 'autoConnect' => false)); $this->expectException('Could not connect to the database.'); $result = $db->create(null); }