Skip to content

Commit

Permalink
#1078 asserting the table directories exists after running the pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
fmendezh committed Sep 12, 2024
1 parent d7e1d9d commit 1f8b957
Showing 1 changed file with 19 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,25 +105,25 @@ public void successFullInterpretationTest() {

assertTrue(Files.exists(prFn.apply("occurrence")));

assertFalse(Files.exists(prFn.apply("amplificationtable")));
assertFalse(Files.exists(prFn.apply("chronometricagetable")));
assertFalse(Files.exists(prFn.apply("cloningtable")));
assertFalse(Files.exists(prFn.apply("extendedmeasurementorfacttable")));
assertFalse(Files.exists(prFn.apply("gelimagetable")));
assertFalse(Files.exists(prFn.apply("germplasmaccessiontable")));
assertFalse(Files.exists(prFn.apply("germplasmmeasurementscoretable")));
assertFalse(Files.exists(prFn.apply("germplasmmeasurementtraittable")));
assertFalse(Files.exists(prFn.apply("germplasmmeasurementtrialtable")));
assertFalse(Files.exists(prFn.apply("identificationtable")));
assertFalse(Files.exists(prFn.apply("identifiertable")));
assertFalse(Files.exists(prFn.apply("loantable")));
assertFalse(Files.exists(prFn.apply("materialsampletable")));
assertFalse(Files.exists(prFn.apply("measurementorfacttable")));
assertFalse(Files.exists(prFn.apply("permittable")));
assertFalse(Files.exists(prFn.apply("preparationtable")));
assertFalse(Files.exists(prFn.apply("preservationtable")));
assertFalse(Files.exists(prFn.apply("referencetable")));
assertFalse(Files.exists(prFn.apply("resourcerelationshiptable")));
assertTrue(Files.exists(prFn.apply("amplificationtable")));
assertTrue(Files.exists(prFn.apply("chronometricagetable")));
assertTrue(Files.exists(prFn.apply("cloningtable")));
assertTrue(Files.exists(prFn.apply("extendedmeasurementorfacttable")));
assertTrue(Files.exists(prFn.apply("gelimagetable")));
assertTrue(Files.exists(prFn.apply("germplasmaccessiontable")));
assertTrue(Files.exists(prFn.apply("germplasmmeasurementscoretable")));
assertTrue(Files.exists(prFn.apply("germplasmmeasurementtraittable")));
assertTrue(Files.exists(prFn.apply("germplasmmeasurementtrialtable")));
assertTrue(Files.exists(prFn.apply("identificationtable")));
assertTrue(Files.exists(prFn.apply("identifiertable")));
assertTrue(Files.exists(prFn.apply("loantable")));
assertTrue(Files.exists(prFn.apply("materialsampletable")));
assertTrue(Files.exists(prFn.apply("measurementorfacttable")));
assertTrue(Files.exists(prFn.apply("permittable")));
assertTrue(Files.exists(prFn.apply("preparationtable")));
assertTrue(Files.exists(prFn.apply("preservationtable")));
assertTrue(Files.exists(prFn.apply("referencetable")));
assertTrue(Files.exists(prFn.apply("resourcerelationshiptable")));
}

@Test
Expand Down

0 comments on commit 1f8b957

Please sign in to comment.