Skip to content

Instantly share code, notes, and snippets.

@Dhiraj240
Created April 9, 2019 14:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Dhiraj240/9882bab847ca183c7807881024273ab8 to your computer and use it in GitHub Desktop.
Save Dhiraj240/9882bab847ca183c7807881024273ab8 to your computer and use it in GitHub Desktop.
Junit tests into Jenkins
<target name="runTests" description="Run JUnit tests">
<junit printsummary="yes" dir="test-classes" fork="true">
<classpath>
<pathelement location="inst-classes" />
</classpath>
<test name="xxx.AllNonGWTTestCaseTests" haltonfailure="no" outfile="result">
<formatter type="xml" />
</test>
</junit>
</target>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment