From 8ca7695dc5f7d9553dd4a77ee43f022b1379028b Mon Sep 17 00:00:00 2001 From: brutzman <brutzman@nps.edu> Date: Sat, 29 Jan 2022 12:11:40 -0800 Subject: [PATCH] main method to notify location of unit test (which is located outside of the jar distribution) --- src/edu/nps/moves/dis7/utilities/PduFactory.java | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/edu/nps/moves/dis7/utilities/PduFactory.java b/src/edu/nps/moves/dis7/utilities/PduFactory.java index f5f38ec30f..29c045d82d 100644 --- a/src/edu/nps/moves/dis7/utilities/PduFactory.java +++ b/src/edu/nps/moves/dis7/utilities/PduFactory.java @@ -1890,4 +1890,12 @@ public class PduFactory return pdus; } + /** + * If invoked, notify location of unit test (which is located outside of the jar distribution). + * @param args none supported + */ + public static void main(String[] args) + { + System.out.println ("*** see edu.nps.moves.dis7.test.AllPduRoundTripTest for unit test"); + } } -- GitLab