Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
NetworkedGraphicsMV3500
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Savage
NetworkedGraphicsMV3500
Commits
f44bc405
Commit
f44bc405
authored
5 years ago
by
Terry D. Norbraten
Browse files
Options
Downloads
Patches
Plain Diff
fixed!!
parent
2e27d3d6
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
test/edu/nps/moves/dis7/AllPduRoundTripTest.java
+7
-6
7 additions, 6 deletions
test/edu/nps/moves/dis7/AllPduRoundTripTest.java
with
7 additions
and
6 deletions
test/edu/nps/moves/dis7/AllPduRoundTripTest.java
+
7
−
6
View file @
f44bc405
...
...
@@ -25,6 +25,7 @@ import edu.nps.moves.dis7.utilities.stream.PduPlayer;
import
edu.nps.moves.dis7.utilities.stream.PduRecorder
;
import
java.io.File
;
import
java.util.HashMap
;
import
java.util.Map
;
import
java.util.concurrent.Semaphore
;
import
org.junit.jupiter.api.*
;
import
static
org
.
junit
.
jupiter
.
api
.
Assertions
.*;
...
...
@@ -170,19 +171,19 @@ public class AllPduRoundTripTest
testRecorderForEquals
();
}
catch
(
Throwable
t
)
{
catch
(
Exception
t
)
{
ex
=
t
;
System
.
out
.
println
(
t
.
getLocalizedMessage
());
t
.
printStackTrace
();
System
.
err
.
println
(
t
.
getLocalizedMessage
());
t
.
printStackTrace
(
System
.
err
);
}
assertNull
(
ex
,
"Exception should be null if successful creation of all objects"
);
}
private
File
recorderDirectory
;
private
Hash
Map
<
DISPDUType
,
Pdu
>
pduSentMap
=
new
HashMap
<>();
private
Hash
Map
<
DISPDUType
,
Pdu
>
pduReceivedMap
=
new
HashMap
<>();
private
Hash
Map
<
DISPDUType
,
Pdu
>
pduReadMap
=
new
HashMap
<>();
private
Map
<
DISPDUType
,
Pdu
>
pduSentMap
=
new
HashMap
<>();
private
Map
<
DISPDUType
,
Pdu
>
pduReceivedMap
=
new
HashMap
<>();
private
Map
<
DISPDUType
,
Pdu
>
pduReadMap
=
new
HashMap
<>();
DisThreadedNetIF
disnetworking
;
PduRecorder
recorder
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment