Source

						public function testGoodConnectionGoodDatabase() {
		$db = new MongoDb(array('autoConnect' => false) + $this->_testConfig);
		$this->assertFalse($db->isConnected());
		$this->assertTrue($db->connect());
		$this->assertTrue($db->isConnected());
	}