unit-threaded 0.2.0
Multi-threaded unit test framework
To use this package, run the following command in your project's root directory:
Manual usage
Put the following dependency into your project's dependences section:
unit-threaded
###Warning: With dmd 2.064.2 on Linux 64-bit this code might crash (it does for me on Arch Linux). I'm waiting on the bug fix but right now I'm downgrading to dmd 2.063 to be able to use this library. On Windows it's ok.
Multi-threaded unit test framework for D. Based on similar work for C++11.
"But doesn't D have built-in unittest
blocks"? Yes, and they're
massively useful. Even short scripts can benefit from them with 0
effort and setup. In fact, I use them to test this library. However,
for larger projects it lacks some functionality:
- If all tests pass, great. If one fails, it's hard to know why.
- The only tool is assert, and you have to write your own assert messages (no assertEqual, assertNull, etc.)
- No possibility to run just one particular test
- Only runs in one thread.
So I wrote this library in and for a language with built-in support for unit tests. Its goals are:
- To run concurrently (by default) for maximal speed and turnaround for TDD
- To make it easy to write tests (functions as test cases)
- No test registration. Tests are discovered with D's compile-time reflection
- Support for built-in
unittest
blocks - To be able to run specific tests or group of tests via the command-line
- Suppress tested code stdio and stderr output by default (important when running in multiple threads).
- Have a special mode that only works when using a single thread under which tested code output is turned back on, as well as special writelnUt debug messages.
- Ability to temporarily hide tests from being run by default whilst stil being able to run them
The library is all in the unit_threaded
package. There are two
example programs in the example
folder, one with passing
unit tests and the other failing, to show what the output looks like
in each case. Because of the way D packages work, they must be run
from the top-level directory of the repository.
The built-in D unittest blocks are included automatically, as seen in
the output of both example programs
(example.tests.pass_tests.unittest
and its homologue in
example_fail
).
The easiest way to run tests is by doing what the example code does:
calling runTests()
in runner.d
with
the modules containing the tests as compile-time arguments. This can
be done as symbols or strings, and the two approaches are shown in
the examples.
There is no need to register tests. The registration is implicit by
deriving from TestCase
and overriding test()
or by writing a
function whose name is in camel-case and begins with "test"
(e.g. testFoo()
, testGadget()
). Specify which modules contain
tests when calling runTests()
and that's it. Private functions
are skipped.
TestCase
also has support for setup()
and shutdown()
, child
classes need only override the appropriate functions(s).
Don't like the algorithm for registering tests? Not a problem. The
attributes @UnitTest
and @DontTest
can be used to opt-in or
opt-out. These are used in the examples.
Tests can also be hidden with the @HiddenTest
attribute. This means
that particular test doesn't get run by default but can still be run
by passing its name as a command-line argument.
Since D packages are just directories and there the compiler can't
read the filesystem at compile-time, there is no way to automatically
add all tests in a package. To mitigate this and avoid having to
manually write the name of all the modules containing tests, a utility
called dtest
can be used to
generate a source file automatically. Simply pass in the desired
directories to scan as command-line arguments. It automatically
generates a file, executes it with rdmd, and print the result.
Use the -h option to get help on the command. To try it out,
run rdmd utils/dtest.d -t example/tests/pass
. You can also pass it
-t example/tests/fail
or -t example/tests
. More information can
be found here. I suggest compiling it and running
it with an alias that calls it with -u
set to the correct directory
for maximum ease of use.
There is support for debug prints in the tests with the -d
switch.
This is only supported in single-threaded mode (-s
). Setting -d
without -s
will trigger a warning followed by the forceful use of
-s
. TestCases and test functions can print debug output with the
function writelnUt
available here.
Related Projects
- dunit: xUnit Testing Framework for D
- DMocks-revived: a mock-object framework that allows to mock interfaces or classes
- specd: a unit testing framework inspired by specs2 and ScalaTest
- DUnit: a toolkit of test assertions and a template mixin to enable mocking
- unit-threaded: a multi-threaded unit testing framework
- Registered by Atila Neves
- 0.2.0 released 11 years ago
- atilaneves/unit-threaded
- github.com/atilaneves/unit-threaded
- BSD 3-clause
- Copyright © 2013, Atila Neves
- Authors:
- Dependencies:
- none
- Versions:
-
2.2.0 2024-May-28 2.1.9 2024-Jan-23 2.1.8 2023-Nov-02 2.1.7 2023-Jul-31 2.1.6 2023-Apr-25 - Download Stats:
-
-
234 downloads today
-
980 downloads this week
-
5530 downloads this month
-
846865 downloads total
-
- Score:
- 5.0
- Short URL:
- unit-threaded.dub.pm