diff --git a/test/edu/nps/moves/dis7/test/AllPduRoundTripTest.java b/test/edu/nps/moves/dis7/test/AllPduRoundTripTest.java index 67bfb0e479ec97fd19dc4077fdef207bad73800b..ca91461b17b5f2d0a2b67b34c01e5e44fdc39b08 100644 --- a/test/edu/nps/moves/dis7/test/AllPduRoundTripTest.java +++ b/test/edu/nps/moves/dis7/test/AllPduRoundTripTest.java @@ -41,6 +41,12 @@ public class AllPduRoundTripTest List<Pdu> pdusRead = new ArrayList<>(); PduFactory pduFactory; PduRecorder pduRecorder; + + /** default constructor */ + public AllPduRoundTripTest() + { + // initialization code here + } /** Prepare */ @BeforeAll diff --git a/test/edu/nps/moves/dis7/test/BitFieldRoundTripTest.java b/test/edu/nps/moves/dis7/test/BitFieldRoundTripTest.java index d95e0949a368463190129284746d055b23371f4f..5d35f54fed7c8c548fa6115dc4024eb3258ff30d 100644 --- a/test/edu/nps/moves/dis7/test/BitFieldRoundTripTest.java +++ b/test/edu/nps/moves/dis7/test/BitFieldRoundTripTest.java @@ -24,6 +24,12 @@ import static org.junit.jupiter.api.Assertions.assertTrue; @DisplayName("Bit Field Round Trip Test") public class BitFieldRoundTripTest { + /** default constructor */ + public BitFieldRoundTripTest() + { + // initialization code here + } + Pdu receivedPdu; DisThreadedNetworkInterface disNetworkInterface; DisThreadedNetworkInterface.PduListener pduListener; diff --git a/test/edu/nps/moves/dis7/test/CommentPdusTest.java b/test/edu/nps/moves/dis7/test/CommentPdusTest.java index 1e58048446b6c794b95ebb176e8db4fc22c6f0c1..8f14565c59bfb725711270326a3463111332ae8b 100644 --- a/test/edu/nps/moves/dis7/test/CommentPdusTest.java +++ b/test/edu/nps/moves/dis7/test/CommentPdusTest.java @@ -21,6 +21,12 @@ public class CommentPdusTest DisThreadedNetworkInterface disNetworkInterface; Pdu receivedPdu; DisThreadedNetworkInterface.PduListener pduListener; + + /** default constructor */ + public CommentPdusTest() + { + // initialization code here + } /** Setup initialization before each test */ @BeforeAll diff --git a/test/edu/nps/moves/dis7/test/CreateAllObjectTypesTest.java b/test/edu/nps/moves/dis7/test/CreateAllObjectTypesTest.java index 839274ef60d6bc588d31ba3ddaddac4f249552ef..0d81f1700648a4706283b1648497d37c9fb73cf2 100644 --- a/test/edu/nps/moves/dis7/test/CreateAllObjectTypesTest.java +++ b/test/edu/nps/moves/dis7/test/CreateAllObjectTypesTest.java @@ -19,7 +19,12 @@ import static org.junit.jupiter.api.Assertions.assertNull; @DisplayName("All Object Types Create") public class CreateAllObjectTypesTest { - /** preparation **/ + /** default constructor */ + public CreateAllObjectTypesTest() + { + // initialization code here + } + /** preparation **/ @BeforeAll public static void beforeAllTests() { diff --git a/test/edu/nps/moves/dis7/test/DataQueryPduRoundTripTest.java b/test/edu/nps/moves/dis7/test/DataQueryPduRoundTripTest.java index 1cf74f92b03b432f43e27bb9f7a23005940b5523..9c240f68ef1bbc124448b9e8759e76e1088b7697 100644 --- a/test/edu/nps/moves/dis7/test/DataQueryPduRoundTripTest.java +++ b/test/edu/nps/moves/dis7/test/DataQueryPduRoundTripTest.java @@ -21,6 +21,11 @@ import static org.junit.jupiter.api.Assertions.assertTrue; @DisplayName("Data Query Pdu Round Test") public class DataQueryPduRoundTripTest { + /** default constructor */ + public DataQueryPduRoundTripTest() + { + // initialization code here + } Pdu receivedPdu; DisThreadedNetworkInterface disNetworkInterface; diff --git a/test/edu/nps/moves/dis7/test/EntityStatePduTest.java b/test/edu/nps/moves/dis7/test/EntityStatePduTest.java index c91e50f5d48a2a94b4a704e838371698a18c71cf..5f3f2fce8da221625b163ebf84a08012e5e64395 100644 --- a/test/edu/nps/moves/dis7/test/EntityStatePduTest.java +++ b/test/edu/nps/moves/dis7/test/EntityStatePduTest.java @@ -23,6 +23,11 @@ import static org.junit.jupiter.api.Assertions.*; @DisplayName("Entity State Pdu Test") public class EntityStatePduTest extends PduTest { + /** default constructor */ + public EntityStatePduTest() + { + // initialization code here + } /** Test PDU sending, receiving, marshalling (serialization) and unmarshalling (deserialization) */ @Test @Override diff --git a/test/edu/nps/moves/dis7/test/FirePduTest.java b/test/edu/nps/moves/dis7/test/FirePduTest.java index e18583d814702e22dc10092ef7f85466a4e115d2..4c0a128a66247dc809c91f31804de954736ef0bf 100644 --- a/test/edu/nps/moves/dis7/test/FirePduTest.java +++ b/test/edu/nps/moves/dis7/test/FirePduTest.java @@ -16,6 +16,11 @@ import static org.junit.jupiter.api.Assertions.*; @DisplayName("Fire Pdu Test") public class FirePduTest extends PduTest { + /** default constructor */ + public FirePduTest() + { + // initialization code here + } /** Test PDU sending, receiving, marshalling (serialization) and unmarshalling (deserialization) */ @Test @Override diff --git a/test/edu/nps/moves/dis7/test/FixedAndVariableDatumRoundTripTest.java b/test/edu/nps/moves/dis7/test/FixedAndVariableDatumRoundTripTest.java index 24f6b8fe3821bbc8a62480c116ece67c04836124..26fa5fda06efb766c2ae981e123d35532f6bfe03 100644 --- a/test/edu/nps/moves/dis7/test/FixedAndVariableDatumRoundTripTest.java +++ b/test/edu/nps/moves/dis7/test/FixedAndVariableDatumRoundTripTest.java @@ -20,6 +20,11 @@ import static org.junit.jupiter.api.Assertions.assertTrue; @DisplayName("Fixed and Variable Datum Round Trip Test") public class FixedAndVariableDatumRoundTripTest { + /** default constructor */ + public FixedAndVariableDatumRoundTripTest() + { + // initialization code here + } Pdu receivedPdu; DisThreadedNetworkInterface disNetworkInterface; DisThreadedNetworkInterface.PduListener pduListener; diff --git a/test/edu/nps/moves/dis7/test/MarshalEnumsTest.java b/test/edu/nps/moves/dis7/test/MarshalEnumsTest.java index 0f47e07690a61592a85455c577b2b988720a6d0f..c5602aa4cdf1e0db6bfc38e8f7d8c19e9e66b58c 100644 --- a/test/edu/nps/moves/dis7/test/MarshalEnumsTest.java +++ b/test/edu/nps/moves/dis7/test/MarshalEnumsTest.java @@ -18,7 +18,12 @@ import static org.junit.jupiter.api.Assertions.assertNull; @DisplayName("Marshal Enums Test") public class MarshalEnumsTest { - /** preparation **/ + /** default constructor */ + public MarshalEnumsTest() + { + // initialization code here + } + /** preparation **/ @BeforeAll public static void setUpClass() { diff --git a/test/edu/nps/moves/dis7/test/NullFieldsEntityMarshallTest.java b/test/edu/nps/moves/dis7/test/NullFieldsEntityMarshallTest.java index e2208a88ddf794005b4df7c820ffadfb3b4f90b0..ea1d97567e2d7b258816f30a9a1eabc82bc9be17 100644 --- a/test/edu/nps/moves/dis7/test/NullFieldsEntityMarshallTest.java +++ b/test/edu/nps/moves/dis7/test/NullFieldsEntityMarshallTest.java @@ -19,6 +19,11 @@ import static org.junit.jupiter.api.Assertions.*; @DisplayName("Null Fields Entity Marshall Test") public class NullFieldsEntityMarshallTest { + /** default constructor */ + public NullFieldsEntityMarshallTest() + { + // initialization code here + } LAV105 lav105; /** preparation **/ diff --git a/test/edu/nps/moves/dis7/test/ObjectTypeMarshallTest.java b/test/edu/nps/moves/dis7/test/ObjectTypeMarshallTest.java index c8e62349a505867f6119dfa57015dc11163aab7f..318dbe76b9f6baf888965c26aa16da8c725c3687 100644 --- a/test/edu/nps/moves/dis7/test/ObjectTypeMarshallTest.java +++ b/test/edu/nps/moves/dis7/test/ObjectTypeMarshallTest.java @@ -18,6 +18,11 @@ import static org.junit.jupiter.api.Assertions.assertNull; @DisplayName("Object Type Marshal Test") public class ObjectTypeMarshallTest { + /** default constructor */ + public ObjectTypeMarshallTest() + { + // initialization code here + } /** preparation **/ @BeforeAll public static void setUpClass() diff --git a/test/edu/nps/moves/dis7/test/PduFactoryTest.java b/test/edu/nps/moves/dis7/test/PduFactoryTest.java index f1d2878057cf9ba788329a4608af3162290a6c10..5fe9b8712318deda7f50c0dbab5b2349e0700935 100644 --- a/test/edu/nps/moves/dis7/test/PduFactoryTest.java +++ b/test/edu/nps/moves/dis7/test/PduFactoryTest.java @@ -19,6 +19,11 @@ import static org.junit.jupiter.api.Assertions.assertNull; @DisplayName("Pdu Factory Test") public class PduFactoryTest { + /** default constructor */ + public PduFactoryTest() + { + // initialization code here + } /** actions to perform before all tests */ @BeforeAll public static void beforeAllTests() diff --git a/test/edu/nps/moves/dis7/test/PduTest.java b/test/edu/nps/moves/dis7/test/PduTest.java index 6287fcc5e2f6d8229e81f20b901db927ea645b3d..24c0d138ca77b7126a17df74b4669286851a3e65 100644 --- a/test/edu/nps/moves/dis7/test/PduTest.java +++ b/test/edu/nps/moves/dis7/test/PduTest.java @@ -59,6 +59,12 @@ abstract public class PduTest DisThreadedNetworkInterface disNetworkInterface; DisThreadedNetworkInterface.PduListener pduListener; + /** default constructor */ + public PduTest() + { + // initialization code here + } + /** preparation **/ @BeforeAll public static void setUpClass() @@ -260,6 +266,7 @@ abstract public class PduTest } /** + * Accessor to set maximum retry attempts * @return the maximumRetryAttempts value */ public int getMaximumRetryAttempts() @@ -268,6 +275,7 @@ abstract public class PduTest } /** + * Accessor to get maximum retry attempts * @param maximumRetryAttempts the maximumRetryAttempts value to set */ public void setMaximumRetryAttempts(int maximumRetryAttempts)