An open API service indexing awesome lists of open source software.

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

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:
![pic1](https://github.com/WildandArt/TestingSummary/assets/17566607/a01221c6-82be-4b8d-9a08-39f763982162)