No description
Find a file
c6h4clch3 76c90cb33b
Merge pull request #5 from c6h4clch3/fix-target
fix: ターゲットファイルの指定を有効化
2020-02-13 11:53:40 +09:00
src Merge pull request #5 from c6h4clch3/fix-target 2020-02-13 11:53:40 +09:00
tests fix: ログ出力のブラックホール処理を OS 別に切り分け 2020-02-10 13:43:16 +09:00
.editorconfig add: テスト実行タスク 2020-02-03 18:10:57 +09:00
.gitignore fix: gitignore 設定ミスを修正 2020-02-12 18:11:21 +09:00
nimsuite.nimble mod: nest -> nimsuite 2020-02-04 18:53:52 +09:00
README.md help 更新 2020-02-05 10:28:24 +09:00

NimSuite

NimSuite is a simple unit test framework, based on Nimble's standard unit tests.

As nimble test, NimSuite runs the test of .nim file which is under /tests directory and filename starts with t. However, compiler messages are supressed by default and it displays the number of the test cases, the number of the passed cases and the number of the failed cases.

Usage

$ nimble install nimsuite
$ nimsuite

Nimsuite looks the current directory for tests directory, then compile and execute tests.

Options

verbose

$ nimsuite --verbose

displays all of compiler message.

clean

$ nimsuite --clean

removes test binary after execute it.