瀏覽代碼

PersonSectionContentsWriter

Andrew Grant 1 月之前
父節點
當前提交
410eabdcef

+ 6 - 1
src/test/java/scot/carricksoftware/grantswriter/writer/latex/parts/people/sections/PersonSectionTest.java

@@ -13,6 +13,7 @@ import org.mockito.Mock;
 import org.mockito.junit.jupiter.MockitoExtension;
 import scot.carricksoftware.grantswriter.domains.people.Person;
 import scot.carricksoftware.grantswriter.writer.latex.parts.people.headers.PersonSectionHeader;
+import scot.carricksoftware.grantswriter.writer.latex.parts.people.subsections.PersonSectionContentsWriter;
 import scot.carricksoftware.grantswriter.writer.latex.parts.people.subsections.PersonSubSectionReferencesWriter;
 import scot.carricksoftware.grantswriter.writer.latex.parts.people.subsections.PersonSubSectionTimeLineWriter;
 import scot.carricksoftware.grantswriter.writer.latex.parts.people.subsections.helpers.ClearExistingTimeLineData;
@@ -40,6 +41,9 @@ class PersonSectionTest {
     @Mock
     private GatherTimeLineData gatherTimeLineDataMock;
 
+    @Mock
+    private PersonSectionContentsWriter personSectionContentsWriterMock;
+
     @Mock
     ClearExistingTimeLineData clearExistingTimeLineDataMock;
 
@@ -50,7 +54,8 @@ class PersonSectionTest {
                 personSubSectionTimeLineWriterMock,
                 personSubSectionReferencesWriterMock,
                 clearExistingTimeLineDataMock,
-                gatherTimeLineDataMock);
+                gatherTimeLineDataMock,
+                personSectionContentsWriterMock);
     }
 
     @Test