f28e23e503
- use OpenCSV parser instead of our own - use TestNG instead of JUnit which is a lot more configurable in test selection (and allows us to do a much better job a leaving the tree green even while developing tests that are known to fail) - integrated TestNG in './gridworks test' - added Iain to the list of contributors in README.txt - changed the Eclipse test launch file to use the TestNG launcher (unfortunately, this is not shipped by default in Eclipse, so you have to install it yourself from the http://beust.com/eclipse update file, I'll add this to the wiki shortly) git-svn-id: http://google-refine.googlecode.com/svn/trunk@782 7d457c2a-affb-35e4-300a-418c747d4874
10 lines
224 B
XML
10 lines
224 B
XML
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >
|
|
|
|
<suite name="Gridworks Unit Tests">
|
|
<test name="tests">
|
|
<packages>
|
|
<package name="com.metaweb.gridworks.tests.*"/>
|
|
</packages>
|
|
</test>
|
|
</suite>
|