Lines Matching +full:test +full:- +full:static +full:- +full:rel
3 <title>TestNG - Migrating from JUnit</title>
5 <link rel="stylesheet" href="testng.css" type="text/css" />
6 <link type="text/css" rel="stylesheet" href="http://beust.com/beust.css" />
15 <link type="text/css" rel="stylesheet" href="http://beust.com/styles/shCore.css"/>
16 <link type="text/css" rel="stylesheet" href="http://beust.com/styles/shThemeCedric.css"/>
35 …e Eclipse TestNG plug-in refactoring support. You will find a full description of its features in …
38 …f you are porting code that uses JUnit's asserts, you might want to us a static import of that cla…
41 import static org.testng.AssertJUnit.*;
49 change your test runner from JUnit to TestNG in Ant and then run TestNG in <tt>"mixed"</tt> mode.
53 <h4>Example - replacing JUnit Ant task with TestNG one</h4>
58 <batchtest todir="${build.test.results.dir}">
59 <fileset dir="${test.src.dir}">
60 <include name="**/*Test.*"/>
63 <path path="${run.test.classpath}"/>
66 <propertyref prefix="test-sys-prop."/>
67 <mapper from="test-sys-prop.*" to="*" type="glob"/>
70 <jvmarg value="-ea"/>
77 <taskdef name="testng" classname="org.testng.TestNGAntTask" classpath="${run.test.classpath}"/&g…
79 <fileset id="mixed.tests" dir="${test.src.dir}">
80 <include name="**/*Test.*"/>
83 …" workingDir="${work.dir}" failureProperty="tests.failed" outputdir="${build.test.results.dir}">
85 <pathelement path="${build.test.classes.dir}"/>
86 <pathelement path="${run.test.classpath}"/>
90 <propertyref prefix="test-sys-prop."/>
91 <mapper from="test-sys-prop.*" to="*" type="glob"/>
101 …<li><a href="http://www.opengamma.com/blog/2011/04/04/converting-opengamma-junit-testng">Here is t…
105 <script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
108 _uacct = "UA-238215-2";