[Clean Country] added test to verify remove of country

This commit is contained in:
Miriam Baglioni 2022-12-16 15:31:25 +01:00
parent dc0ec88a58
commit 8685eaa706
2 changed files with 4 additions and 1 deletions

View File

@ -167,7 +167,7 @@ public class CleanCountryTest {
"--isSparkSessionManaged", Boolean.FALSE.toString(),
"--inputPath", workingDir.toString() + "/dataset",
"-graphTableClassName", Dataset.class.getCanonicalName(),
"-workingPath", workingDir.toString() + "/working",
"-workingDir", workingDir.toString() + "/working",
"-country", "NL",
"-verifyParam", "10.17632",
"-collectedfrom", "NARCIS",
@ -183,6 +183,8 @@ public class CleanCountryTest {
Assertions.assertEquals(1, tmp.count());
Assertions.assertEquals(0, tmp.first().getCountry().size());
}