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
7705fa33
Commit
7705fa33
authored
5 years ago
by
J. M. Bailey
Browse files
Options
Downloads
Patches
Plain Diff
Test classes now working with junit 5
parent
f7c28421
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
build.xml
+24
-0
24 additions, 0 deletions
build.xml
with
24 additions
and
0 deletions
build.xml
+
24
−
0
View file @
7705fa33
...
...
@@ -70,6 +70,30 @@
nbproject/build-impl.xml file.
-->
<!--
JUnit 5 is not perfectly supported in Netbeans 11 at this time. This technique
will all the "Test Project" choice in the "Run" menu to properly run junit 5
test. Running in other ways, such as individually, doesn't seem to work.
https://blogs.apache.org/netbeans/entry/junit-5-apache-ant-and
-->
<target
name=
"test"
depends=
"compile-test,-pre-test-run"
>
<java
dir=
"${work.dir}"
classpath=
"${run.test.classpath}"
classname=
"org.junit.platform.console.ConsoleLauncher"
>
<arg
value=
"--scan-classpath"
/>
<arg
line=
"--reports-dir build/test/results"
/>
</java>
<junitreport
todir=
"build/test/results"
>
<fileset
dir=
"build/test/results"
>
<include
name=
"TEST-*.xml"
/>
</fileset>
<report
format=
"frames"
todir=
"build/test/results/html"
/>
</junitreport>
</target>
<target
name=
"jar-javadoc"
depends=
"javadoc"
>
<mkdir
dir=
"${basedir}/dist/javadoc"
/>
<jar
destfile=
"${basedir}/dist/open-dis7-javadoc.jar"
basedir=
"${basedir}/dist/javadoc"
>
...
...
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