https://github.com/wildandart/testingsummary
Simple lightweight unit-testing assistant
https://github.com/wildandart/testingsummary
Last synced: about 2 months ago
JSON representation
Simple lightweight unit-testing assistant
- Host: GitHub
- URL: https://github.com/wildandart/testingsummary
- Owner: WildandArt
- License: mit
- Created: 2024-03-27T10:23:56.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-27T11:16:20.000Z (about 1 year ago)
- Last Synced: 2025-01-16T16:54:46.035Z (4 months ago)
- Language: C++
- Size: 54.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## TestingSummary - Simple lightweight unit-testing hpp file
# Example:
int main()
{
int a = 5;
int b = 10;TestEqual(6, a);
TestLarger(b, a);
TestUnEqual(5, b);
TestExpression(a == b);return 0;
}
# Output:
