Is there a good tool out there to automatically generate jUnit test cases based on some primitive template? This is so that test cases can be written by engineers who do not ha
Have you looked at fit?
Fit lets you make an html table and then uses those values in your junit tests, turning the table elements red or green depending on the results of the test. It comes packaged with JUnit. You do need to wire up the fixture to translate table emenents into java but there's support for that.
There a number of good resources floating around.