|
@@ -25,12 +25,17 @@ class GatherTimeLineDataTest {
|
|
|
@Mock
|
|
|
private GatherBirthCertificateTimeLineData gatherBirthCertificateTimeLineDataMock;
|
|
|
|
|
|
+ @Mock
|
|
|
+ private GatherDeathCertificateTimeLineData gatherDeathCertificateTimeLineDataMock;
|
|
|
+
|
|
|
@Mock
|
|
|
private Person personMock;
|
|
|
|
|
|
@BeforeEach
|
|
|
void setUp() {
|
|
|
- gatherTimeLineData = new GatherTimeLineDataImpl(gatherCensusTimeLineDataMock, gatherBirthCertificateTimeLineDataMock);
|
|
|
+ gatherTimeLineData = new GatherTimeLineDataImpl(gatherCensusTimeLineDataMock,
|
|
|
+ gatherBirthCertificateTimeLineDataMock,
|
|
|
+ gatherDeathCertificateTimeLineDataMock);
|
|
|
}
|
|
|
|
|
|
@Test
|