特定のシステムの正確性を検証する Pythonic ツールを作成しています。各検証は Python として記述されunittest
、レポートは次のようになります。
test_exclude_list_not_empty (__main__.TestRepoLists)
Assert the the exclude list is not empty ... ok
test_include_list_not_empty (__main__.TestRepoLists)
Assert the the include list is not empty ... ok
test_repo_list_not_empty (__main__.TestRepoLists)
Assert the the repo list is not empty ... ok
私の意見では、この形式は、特に Python を使用していない人にとっては読みにくいものです。素敵な表形式でレポートを生成できるレポートジェネレーターはありますか?
+----------------------------------------------------------------+-----------+
| Test | Status |
+----------------------------------------------------------------+-----------+
| Assert the the exclude list is not empty | OK |
| Assert the the include list is not empty | OK |
| Assert the the repo list is not empty | OK |
| All the items in the include list should be in the repo list | OK |
+----------------------------------------------------------------+-----------+
明確化テスト スイートはリモート ターミナルで実行されるため、コマンド ライン レポート ツールを好みます。