public function testGetCollectionInfoExecutionTimeoutException()
{
$document = ['foo' => 'bar'];
$this->getCollection()->insert($document);
$database = $this->getDatabase();
$this->failMaxTimeMS();
$this->setExpectedException('MongoExecutionTimeoutException');
$database->getCollectionInfo(['maxTimeMS' => 1]);
}