Given the popularity of unit testing, and the inclusion of DUnit with Delphi, has this been embraced by any component vendors who have released their source along with a suite of unit tests?

I'm looking for examples to share with other developers.

link|improve this question

1  
This is setting up to be a list question, which StackOverflow kind of tries to discourage. But check out DeHL and OmniThreadLibrary. – Mason Wheeler Sep 30 '11 at 4:03
1  
And our mORMot Open source project (Client-Server RESTful ORM with SOA). It is shipped with about 6,000,000 regression tests. – Arnaud Bouchez Sep 30 '11 at 5:13
2  
Maybe you could rephrase it to be "what's the best example of professional-grade DUnit tests?" – Eugene Yokota Sep 30 '11 at 5:18
Component testing is not very well suited for unit testing since most components are all about GUI behaviour and not so much about testable behaviour. – Smasher Sep 30 '11 at 7:48
'Not constructive'... 'expect answers to generally involve facts, references'... isn't that what this question is about? (facts, references - it's not an opinion if a component library ships with unit tests) – Darian Miller Sep 30 '11 at 14:18
show 1 more comment
feedback

closed as not constructive by Mason Wheeler, Rob Kennedy, David Heffernan, Ken White, Graviton Sep 30 '11 at 11:28

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

1 Answer

DWScript ships with a large collection of DUnit-based tests, most of them "hand-made", and also leverages Delphi Code Coverage (see also the DCC Wizard project).

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.