ActionFigureTest.java 488B

12345678910111213141516171819202122
  1. package com.zipcodewilmington.generic.identifiables;
  2. import org.junit.Assert;
  3. import org.junit.Test;
  4. /**
  5. * @author leon on 06/12/2018.
  6. */
  7. public class ActionFigureTest {
  8. ActionFigure actionFigure = new ActionFigure();
  9. @Test
  10. public void testImplementation() {
  11. Assert.assertTrue(actionFigure instanceof IdentifiableInterface);
  12. }
  13. @Test
  14. public void testGetIdentityType() {
  15. Assert.assertEquals(actionFigure.getIdentityType(), Long.class);
  16. }
  17. }