Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/maulingmonkey/libmmkunittest
MaulingMonKey's Unit Testing API. No, the world didn't really need another unit testing library either. Yes, I wrote one anyways.
https://github.com/maulingmonkey/libmmkunittest
cross-platform debug library native nuget nuit-testing unit-test
Last synced: 18 days ago
JSON representation
MaulingMonKey's Unit Testing API. No, the world didn't really need another unit testing library either. Yes, I wrote one anyways.
- Host: GitHub
- URL: https://github.com/maulingmonkey/libmmkunittest
- Owner: MaulingMonkey
- License: apache-2.0
- Created: 2017-04-03T02:17:21.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-08T03:25:13.000Z (almost 8 years ago)
- Last Synced: 2025-01-22T20:34:08.018Z (18 days ago)
- Topics: cross-platform, debug, library, native, nuget, nuit-testing, unit-test
- Language: C++
- Size: 37.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# libMmkUnitTest
MaulingMonKey's Unit Testing API. No, the world didn't really need another unit testing library either. Yes, I wrote one anyways.
Project Goals:
- Cross Platform - E.g. I shouldn't have to customize anything to get a sane Android unit testing story. Not quite there yet.
- No Config - aiming to have "perfect" NuGet integration, with .libs, sane defaults, and source compilation fallback.License: [Apache 2.0](LICENSE.txt)
# TODO
- The rest of this README
- Creation of Android .apk s for unit test .so s from a template without requiring a wrapper project.
- Move more junk to .cpp files
- Customize src builds to output non-conflicting .obj files
- Regression/comparison testing (separate project?)
- Fuzz testing (separate project?)
- Chaos monkey failure testing (separate project?)# Development
## Terminology
| Term | Description |
| -------- | ----------------------------------------------------- |
| Category | A grouping of unit tests (via MMK_UNIT_TEST_CATEGORY) |
| Test | An individual MMK_UNIT_TEST test / entry point |
| Check | An individual ASSERT_X or REQUIRE_X macro invokation. |