Open source alternative to TestDirector or other testing/defect tracking software?
February 5, 2005 10:10 AM
Subscribe
Open source requirements, testing and defect tracking software: any of you have good/bad/middling experience with web-based tools that offer a good alternative to ($$$) TestDirector or its ilk? Preferred platform would be Windows.
posted by nj_subgenius to computers & internet (5 comments total)
The traditional strategy of various very large open source projects is to use bug tracking software for everything. So, someone will enter a bug entry that is actually a requirement for the next version, and have it depend on various bug fixes and feature enhancements that will enable that requirement. Bugzilla is by far the most popular defect tracking software for open source projects. It's very very featureful and fairly easy to use, but also very difficult to set up. Several commercial companies I've worked out, including a few that SELL their own defect tracking software, use bugzilla internally. Check out their site for a feature list.
With regards to specific testing tools, the only one I know anything about is Hyades, which is a plugin to the eclipse format. For less integrated approaches, the general tactic is to use some sort of unit testing framework, like JUnit, combined with bugzilla and a custom test running suite. Sorry, there aren't really any combined suites that do what you want, but it may end up that you only need part of what you think you do, and can custom write the remaining parts.
posted by JZig at 11:51 AM on February 5, 2005