Skip to content
Snippets Groups Projects
Commit bfa2e558 authored by Brutzman, Don's avatar Brutzman, Don
Browse files

corrected enumeration naming

parent 2398283d
No related branches found
No related tags found
No related merge requests found
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
*/ */
package edu.nps.moves.dis7; package edu.nps.moves.dis7;
import edu.nps.moves.dis7.entities.usa.platform.land.LAV_105; import edu.nps.moves.dis7.entities.usa.platform.land.LAV105;
import java.nio.ByteBuffer; import java.nio.ByteBuffer;
import org.junit.jupiter.api.*; import org.junit.jupiter.api.*;
import static org.junit.jupiter.api.Assertions.*; import static org.junit.jupiter.api.Assertions.*;
...@@ -18,7 +18,7 @@ import static org.junit.jupiter.api.Assertions.*; ...@@ -18,7 +18,7 @@ import static org.junit.jupiter.api.Assertions.*;
@DisplayName("Null Fields Entity Marshall Test") @DisplayName("Null Fields Entity Marshall Test")
public class NullFieldsEntityMarshallTest public class NullFieldsEntityMarshallTest
{ {
LAV_105 lav105; LAV105 lav105;
@BeforeAll @BeforeAll
public static void beforeAllTests() public static void beforeAllTests()
...@@ -33,7 +33,7 @@ public class NullFieldsEntityMarshallTest ...@@ -33,7 +33,7 @@ public class NullFieldsEntityMarshallTest
@BeforeEach @BeforeEach
public void setUp() public void setUp()
{ {
lav105 = new LAV_105(); lav105 = new LAV105();
} }
@AfterEach @AfterEach
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment