Re: DUnit: Advanced unit testing toolkit.

2013-09-22 Thread linkrope
Have a look at https://github.com/linkrope/dunit, especially at the Related Projects. Until now, my preferred tool for (large-scale) unit testing in D would be the combination of my dunit framework (of course), DMocks-revived for mocks, and the 'must' matchers of specd. How does your toolkit

Re: DUnit: Advanced unit testing toolkit.

2013-09-22 Thread Gary Willoughby
On Sunday, 22 September 2013 at 13:13:29 UTC, linkrope wrote: Have a look at https://github.com/linkrope/dunit, especially at the Related Projects. Until now, my preferred tool for (large-scale) unit testing in D would be the combination of my dunit framework (of course), DMocks-revived for

Re: DUnit: Advanced unit testing toolkit.

2013-09-22 Thread Gary Willoughby
On Sunday, 22 September 2013 at 15:54:39 UTC, Gary Willoughby wrote: The reason i've gone with just providing more specific assert methods is that i can create nice helpful error message when things go wrong. For example this line: 1.assertEquals(0); Creates this error:

Re: DUnit: Advanced unit testing toolkit.

2013-09-22 Thread Jacob Carlborg
On 2013-09-21 02:40, Gary Willoughby wrote: DUnit: Advanced unit testing toolkit. I've needed this for a project i've been working on so i created a toolkit that i'm using and happy with. I must thank the community here for helping me with a few issues along the way (mostly due to poor