aboutsummaryrefslogtreecommitdiff
path: root/src/unittest (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix build on Debian broken by b45df9d (missing include, somehow?)kwolekr2015-05-051-0/+1
|
* NodeDefManager: Improve const-correctness of interfaceskwolekr2015-05-051-20/+14
| | | | | | - Add ability to explicitly reset NodeResolve state (useful for unittesting) - Remove non-essential NodeResolve methods modifying state from INodeDefManager - Add const qualifier to NodeDefManager and ContentFeatures serialize
* Tests: Add NodeResolver unittestskwolekr2015-05-056-16/+338
| | | | | | Minor misc. NodeResolver cleanups Prefix faux content type constants for testing with t_ to avoid confusion or name collisions
* Fix GCC compiler warningShadowNinja2015-05-041-2/+2
|
* Tests: Add ObjDef unittestskwolekr2015-05-032-0/+108
|
* Fix several MSVC issues numeric.hSmallJoker2015-05-011-0/+11
| | | | | -> Round negative numbers correctly CMakeLists.txt -> Link Json with the static run-time library
* Fix MSVC compatibilitykwolekr2015-04-291-17/+11
| | | | | | Make sure to include random unittests in android builds, too Use SWAP() macro Ensure that negative ranges are tested as well in random unittests
* Tests: Add random unittestskwolekr2015-04-293-1/+279
|
* Tests: Modularize unit testingkwolekr2015-04-2618-0/+3373
Split unit tests into separate files under src/unittest/ Give better unittest diagnostics Clean up some code