dunit
dunit copied to clipboard
Advanced unit testing toolkit for the D programming language
for some time I've found dunit unusable. with my current dmd install (2.080.1) on Windows I can't run `dub test` with dunit in my project as it causes a linker...
Here is my attempt to implement mocking for `shared` methods. The major problem here is that you can only call `shared` methods on `shared` objects. The current implementation of `getMock()`...
I'm writing a library which needs to have `@safe @nogc pure nothrow` API. To ensure this, I annotate my unittests with those attributes, however this currently means that I can't...