clean up tests

This commit is contained in:
Claudio Atzori 2021-05-05 17:28:15 +02:00
parent dccaf173cf
commit d4a30fabe3
1 changed files with 0 additions and 9 deletions

View File

@ -40,15 +40,6 @@ public class MigrateMongoMdstoresApplicationTest {
db.getCollection("metadataManager").insertOne(Document.parse(read("mdstore_metadataManager.json")));
}
@Test
public void test_MdstoreClient() throws IOException {
try (MdstoreClient client = new MdstoreClient(mongo.getMongoClient(), MongoExtension.UNIT_TEST_DB)) {
for (String xml : client.listRecords(COLL_NAME)) {
Assertions.assertTrue(StringUtils.isNotBlank(xml));
}
}
}
@Test
public void test_MigrateMongoMdstoresApplication(@TempDir Path tmpPath) throws Exception {