Browse Source

CensusEntryService

Andrew Grant 3 months ago
parent
commit
367ec8e330

+ 9 - 0
src/main/java/scot/carricksoftware/grantswriter/services/people/CensusEntryService.java

@@ -0,0 +1,9 @@
+/*
+ * Copyright (c) 2025.  Andrew Grant Carrick Software. All rights reserved
+ *
+ */
+
+package scot.carricksoftware.grantswriter.services.people;
+
+public interface CensusEntryService {
+}

+ 9 - 0
src/main/java/scot/carricksoftware/grantswriter/services/people/CensusEntryServiceImpl.java

@@ -0,0 +1,9 @@
+/*
+ * Copyright (c) 2025.  Andrew Grant Carrick Software. All rights reserved
+ *
+ */
+
+package scot.carricksoftware.grantswriter.services.people;
+
+public class CensusEntryServiceImpl implements CensusEntryService {
+}

+ 1 - 0
src/main/java/scot/carricksoftware/grantswriter/writer/latex/parts/people/subsections/PersonSubSectionReferencesWriterImpl.java

@@ -21,6 +21,7 @@ public class PersonSubSectionReferencesWriterImpl implements PersonSubSectionRef
     @Override
     public void write(Person person) {
         latexSubSectionHeader.write("References");
+
     }
 
 }

+ 26 - 0
src/test/java/scot/carricksoftware/grantswriter/services/people/CensusEntryServiceTest.java

@@ -0,0 +1,26 @@
+/*
+ * Copyright (c) 2025.  Andrew Grant Carrick Software. All rights reserved
+ *
+ */
+
+package scot.carricksoftware.grantswriter.services.people;
+
+
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Test;
+
+import static org.junit.jupiter.api.Assertions.assertNotNull;
+
+class CensusEntryServiceTest {
+private CensusEntryService censusEntryService;
+
+    @BeforeEach
+    void setUp() {
+        censusEntryService = new CensusEntryServiceImpl();
+    }
+
+    @Test
+    void constructorTest() {
+        assertNotNull(censusEntryService);
+    }
+}