Software Tools
Some Lists of Tools
- Pressman
- Requirements Tools
- Test Tools
Eclipse Debugger
Eclipse Refactoring
djUnit
- Download the appropriate (Eclipse 3.2?) djUnit zip file from dJUnit home or from here (Eclipse 3.2).
- Extract the zip file to your Eclipse plugin directory (probably C:\eclipse\plugins on Windows machines in lab).
- Restart Eclipse.
- In the Package Explorer, find a test to run. Right-click and select Run As, select djUnit. JUnit should execute and djUnit metrics should appear.
Ant
- Download Ant Tutorial zip file and extract to a folder.
- For each of the three projects,
- review the build.xml file and the project folder structure
- navigate to the project folder on the command line
- type "ant" to see ant do the default activitity (compile/build)
- On the ThirdProject, view the JUnit reports in ThirdProject/build/test/reports/index.html
- Fix the incorrect test in TestThermometer.testSetGet()
- Build and run tests again with "ant"
- Verify that test passed