Forráskód Böngészése

Military attributes death certificate domain test

Andrew Grant 4 hónapja
szülő
commit
ee391a5c51

+ 65 - 0
src/test/java/scot/carricksoftware/grants/domains/certificates/death/DeathCertificateMilitaryTest.java

@@ -0,0 +1,65 @@
+/*
+ * Copyright (c) 2025.  Andrew Grant Carrick Software. All rights reserved
+ *
+ */
+
+package scot.carricksoftware.grants.domains.certificates.death;
+
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Test;
+import scot.carricksoftware.grants.domains.certificates.DeathCertificate;
+
+import static org.junit.jupiter.api.Assertions.assertEquals;
+import static org.junit.jupiter.api.Assertions.assertNull;
+import static scot.carricksoftware.grants.GenerateCertificateRandomValues.GetRandomString;
+
+
+class DeathCertificateMilitaryTest {
+
+    private DeathCertificate deathCertificate;
+
+    @BeforeEach
+    void setUp() {
+        deathCertificate = new DeathCertificate();
+    }
+
+    @Test
+    void getRegimentTest() {
+        assertNull(deathCertificate.getRegiment());
+    }
+
+    @Test
+    void setRegimentTest() {
+        String regiment = GetRandomString();
+        deathCertificate.setRegiment(regiment);
+        assertEquals(regiment, deathCertificate.getRegiment());
+    }
+
+    @Test
+    void getServiceNumberTest() {
+        assertNull(deathCertificate.getServiceNumber());
+    }
+
+    @Test
+    void setServiceNumberTest() {
+        String serviceNumber = GetRandomString();
+        deathCertificate.setServiceNumber(serviceNumber);
+        assertEquals(serviceNumber, deathCertificate.getServiceNumber());
+    }
+
+    @Test
+    void getServiceRankTest() {
+        assertNull(deathCertificate.getServiceRank());
+    }
+
+    @Test
+    void setServiceRankTest() {
+        String serviceRank = GetRandomString();
+        deathCertificate.setServiceRank(serviceRank);
+        assertEquals(serviceRank, deathCertificate.getServiceRank());
+    }
+
+
+
+
+}