master #59

Closed
claudio.atzori wants to merge 3221 commits from master into stable_ids
1 changed files with 0 additions and 9 deletions
Showing only changes of commit d4a30fabe3 - Show all commits

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 {