Sokil\Mongo\CollectionTest::testDeleteCollection_UnexistedCollection PHP Method

testDeleteCollection_UnexistedCollection() public method

    public function testDeleteCollection_UnexistedCollection()
    {
        $this->collection = $this->database->getCollection('UNEXISTED_COLLECTION_NAME');
        $this->collection->delete();
    }
CollectionTest