Sfoglia il codice sorgente

GatherTimeLineDataTest

Andrew Grant 2 mesi fa
parent
commit
97f8352015

+ 6 - 0
src/test/java/scot/carricksoftware/grantswriter/writer/latex/parts/people/subsections/helpers/GatherTimeLineDataTest.java

@@ -50,4 +50,10 @@ class GatherTimeLineDataTest {
         verify(gatherBirthCertificateTimeLineDataMock).gather(personMock);
     }
 
+    @Test
+    void gatherDeathCertificateDataTest() {
+        gatherTimeLineData.gather(personMock);
+        verify(gatherDeathCertificateTimeLineDataMock).gather(personMock);
+    }
+
 }