サニティテスト - CI/CD用語集の定義
サニティテストは、特定の変更や関数が妥当に振る舞うかを素早く検証します。
サニティテストは、特定の関数や最近の修正が期待どおりに動作するかの、狭く焦点を絞った確認で、通常は小さな変更の後に、より広範なテストの前にそれが妥当かを確認するために行われます。
スモークテストがbuild全体にわたって広く浅いのに対し、サニティテストは狭く、たった今変更された領域を対象とします。
使いどころ
バグ修正の後、サニティチェックは、完全なリグレッションスイートに時間を投じる前に修正が機能することを確認します。
関連ガイド
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…
Regression Testing - CI/CD Glossary DefinitionRegression Testing: Regression testing reruns existing tests after a change to confirm that previously workin…
Exploratory Testing - CI/CD Glossary DefinitionExploratory Testing: Exploratory testing is unscripted, human-driven testing where the tester simultaneously…