Sokil\Mongo\DocumentTest::setUp PHP Method

setUp() public method

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