ImboIntegrationTest\Storage\GridFSTest::setUp PHP Method

setUp() public method

public setUp ( )
    public function setUp()
    {
        if (!class_exists('MongoClient')) {
            $this->markTestSkipped('pecl/mongo >= 1.3.0 is required to run this test');
        }
        $client = new MongoClient();
        $client->selectDB($this->testDbName)->drop();
        parent::setUp();
    }