|
|
@@ -0,0 +1,47 @@
|
|
|
+/*
|
|
|
+ * Copyright (c) 2025. Andrew Grant Carrick Software. All rights reserved
|
|
|
+ *
|
|
|
+ */
|
|
|
+
|
|
|
+package scot.carricksoftware.grants.domains;
|
|
|
+
|
|
|
+import org.junit.jupiter.api.BeforeEach;
|
|
|
+import org.junit.jupiter.api.Test;
|
|
|
+
|
|
|
+import static org.junit.jupiter.api.Assertions.assertEquals;
|
|
|
+import static org.junit.jupiter.api.Assertions.assertNull;
|
|
|
+import static scot.carricksoftware.grants.GenerateCertificateRandomValues.GetRandomString;
|
|
|
+
|
|
|
+class OrganisationTest {
|
|
|
+
|
|
|
+ private Organisation organisation;
|
|
|
+
|
|
|
+ @BeforeEach
|
|
|
+ void setUp() {
|
|
|
+ organisation = new Organisation();
|
|
|
+ }
|
|
|
+
|
|
|
+ @Test
|
|
|
+ void getIdTest() {
|
|
|
+ assertNull(organisation.getId());
|
|
|
+ }
|
|
|
+
|
|
|
+ @Test
|
|
|
+ void setIdTest() {
|
|
|
+ String id = GetRandomString();
|
|
|
+ organisation.setName(id);
|
|
|
+ assertEquals(id, organisation.getName());
|
|
|
+ }
|
|
|
+
|
|
|
+ @Test
|
|
|
+ void getNameTest() {
|
|
|
+ assertNull(organisation.getName());
|
|
|
+ }
|
|
|
+
|
|
|
+ @Test
|
|
|
+ void setNameTest() {
|
|
|
+ String name = GetRandomString();
|
|
|
+ organisation.setName(name);
|
|
|
+ assertEquals(name, organisation.getName());
|
|
|
+ }
|
|
|
+}
|