Skip to content

Commit

Permalink
put test at end again
Browse files Browse the repository at this point in the history
  • Loading branch information
mswertz committed Dec 16, 2024
1 parent 09c9971 commit cf4b7cd
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,6 @@ public static void setup() {
database.dropSchemaIfExists(CATALOGUE_ONTOLOGIES);
}

@Test
void test00PortalLoader() throws URISyntaxException, IOException {
// depends on catalogue test above
Schema schema = database.dropCreateSchema(PORTAL_TEST);
DataModels.Regular.RD3_V2.getImportTask(schema, false).run();
assertEquals(94, schema.getTableNames().size());
}

@Test
public void test01FAIRDataHubLoader() {
Schema fairDataHubSchema = database.createSchema(FAIR_DATA_HUB_TEST);
Expand Down Expand Up @@ -163,4 +155,12 @@ void test17FAIRDataPointLoader() {
DataModels.Profile.FAIR_DATA_POINT.getImportTask(FDPSchema, true).run();
assertEquals(25, FDPSchema.getTableNames().size());
}

@Test
void test18PortalLoader() throws URISyntaxException, IOException {
// depends on catalogue test above
Schema schema = database.dropCreateSchema(PORTAL_TEST);
DataModels.Regular.RD3_V2.getImportTask(schema, false).run();
assertEquals(94, schema.getTableNames().size());
}
}

0 comments on commit cf4b7cd

Please sign in to comment.