テストスイート (Test Suite) - CI/CD用語集の定義
テストスイートは、1 つの単位として実行される test case の名前付きグループです。
テストスイート (Test Suite) は、一緒に実行するためにまとめられた関連する test case の集まりで、多くは feature、モジュール、種類 (unit、integration) ごとです。スイートを実行すると、システムの一部分を検証します。
スイートにより、チームはテストを整理し、選択的に実行できます。例えば、push のたびに高速な unit スイートを、夜間に低速な integration スイートを実行します。
CI での扱い
1 つの大きなスイートを的を絞った複数のスイートに分割すると、pipeline は並列化でき、最も安価なテストで先に fail fast できます。
関連ガイド
Test Case - CI/CD Glossary DefinitionTest Case: A test case is a single scenario with defined inputs, actions, and expected outcomes that verifies…
Test Runner - CI/CD Glossary DefinitionTest Runner: A test runner is the tool that discovers, executes, and reports on tests. Examples include Jest,…
Smoke Testing - CI/CD Glossary DefinitionSmoke Testing: Smoke testing is a quick, shallow check that the most critical paths of a build work at all, r…