extended the test class - should have done by the start :)

This commit is contained in:
Miriam Baglioni 2021-02-24 11:52:07 +01:00
parent cc11ee1cb9
commit 17049f8bde
1 changed files with 5 additions and 0 deletions

View File

@ -137,5 +137,10 @@ public class SplitPerFunderTest {
.map(item -> OBJECT_MAPPER.readValue(item, CommunityResult.class));
Assertions.assertEquals(3, tmp.count());
// H2020 3
tmp = sc
.textFile(workingDir.toString() + "/split/MZOS")
.map(item -> OBJECT_MAPPER.readValue(item, CommunityResult.class));
Assertions.assertEquals(1, tmp.count());
}
}