void ServiceContextMongoDTest::tearDown() {
    auto txn = cc().makeOperationContext();
    _dropAllDBs(txn.get());
}
void ServiceContextMongoDTest::tearDown() {
    _dropAllDBs();
}
Example #3
0
void ServiceContextMongoDTest::tearDown() {
    ON_BLOCK_EXIT([&] { Client::destroy(); });
    auto opCtx = cc().makeOperationContext();
    _dropAllDBs(opCtx.get());
}