mirror of
https://github.com/sealmove/testify
synced 2026-01-14 18:51:32 +00:00
No description
| .gitignore | ||
| LICENSE | ||
| README.md | ||
| testify.nim | ||
| testify.nimble | ||
testify
Compile-Run-Report helper for Nim
This project was born out of the need of an external tool that produces a report out of multiple Nim modules/files. It does not provide any debugging info like stdlib's unittest module. Instead, it is a simple tool that works as follows:
- the first command line argument is the path of the JUnit report to be generated
- each command line argument that follows must be a directory and corresponds to one JUnit testsuite
- each Nim module in the directory starting with the character 't' corresponds to one JUnit testcase
- a single JUnit report is printed in stdout which reports for each module:
- whether it compiled successfully or not
- whether it executed successfully or not (in case of failure the error message is logged)