Sokil\Mongo\DocumentValidationTest::setUp PHP Method

setUp() public method

public setUp ( )
    public function setUp()
    {
        // connect to mongo
        $client = new Client(getenv('PHPMONGO_DSN') ? getenv('PHPMONGO_DSN') : null);
        // select database
        $database = $client->getDatabase('test');
        // select collection
        $this->collection = $database->getCollection('phpmongo_test_collection');
    }