Browse Source

Informants added to BirthCertificate domain (3)

Andrew Grant 5 tháng trước cách đây
mục cha
commit
eddefc1dde

+ 5 - 5
src/test/java/scot/carricksoftware/grants/domains/certificates/BirthCertificatePartThreeTest.java

@@ -48,14 +48,14 @@ class BirthCertificatePartThreeTest {
     }
 
     @Test
-    public void getInformantRankTest() {
-        assertNull(certificate.getInformantRank());
+    public void getInformantQualificationTest() {
+        assertNull(certificate.getInformantQualification());
     }
 
     @Test
     public void setInformantRankTest() {
-        String informantRank = GetRandomString();
-        certificate.setInformantRank(informantRank);
-        assertEquals(informantRank, certificate.getInformantRank());
+        String informantQualification = GetRandomString();
+        certificate.setInformantQualification(informantQualification);
+        assertEquals(informantQualification, certificate.getInformantQualification());
     }
 }