DMYImplTest.java 451 B

1234567891011121314151617181920212223242526
  1. /*
  2. * Copyright (c) 2025. Andrew Grant Carrick Software. All rights reserved
  3. *
  4. */
  5. package scot.carricksoftware.grantswriter.data;
  6. import org.junit.jupiter.api.BeforeEach;
  7. import org.junit.jupiter.api.Test;
  8. import static org.junit.jupiter.api.Assertions.*;
  9. class DMYImplTest {
  10. private DMY dmy;
  11. @BeforeEach
  12. void setUp() {
  13. dmy = new DMYImpl();
  14. }
  15. @Test
  16. void constructorTest() {
  17. assertNotNull(dmy);
  18. }
  19. }