DDSteps 1.1.1 Development Builds
Right now, these are unstable and only intended for Q&A testers. The current version is 1.1.1-beta2. Get it at SourceForge
.
Changes
Beta 2
[DDS-46] Version bump ehcache to 1.2.3 from 1.1. This makes DDSteps play nice with Hibernate 3.
Beta 1
Workaround for Eclipse 3.2 (and maybe IntelliJ IDEA?)
Eclipse 3.2 would not show the DDSteps test in its JUnit view, since DDSteps does not run just one test per method as Eclipse 3.2 expects. Eclipse 3.1.x works great, it's just 3.2-rcX (I have rc7) that does not.
So, the workaround is to put in a suite in the testcase. This puts DDSteps in control of creating the individual test.
public class PetFTest extends PetclinicTestCase {
public static Test suite() {
return DDStepsSuiteFactory.createSuite(PetFTest.class);
}
...
So you still have to inherit from a DDSteps base class (we're hoping to do something about that too, soon
). And you have to put this in every test, since it's a static method. Sorry 'bout that, but it's JUnit's fault, and not much can be done about that.
DDS-44@jira
Fixed WebTrail in JWebUnit WebBrowser.
When the webtrail is switched off, the trails folder and folders for each test is no longer created.
DDS-39@jira
Fixed Excel loading problem when Excel file does not exist or is bad.