回帰テスト - CI/CD用語集の定義
回帰テストは、新しいコードが取り込まれたときに、以前は機能していたものを壊さないように保護します。
回帰テストは、変更後に既存のテストを再実行し、以前は機能していた振る舞いが引き続き機能すること、そして修正や機能が古い欠陥を再導入していないことを確認します。
回帰テストは、新しいコードが取り込まれたときに、以前は機能していたものを壊さないように保護します。
CIでは
回帰スイートは通常、すべてのpull requestで実行される全テストセットです。よい習慣は、各バグ修正に対して回帰テストを追加し、同じ欠陥が静かに再発できないようにすることです。
関連ガイド
Unit Test - CI/CD Glossary DefinitionUnit Test: A unit test verifies a single function, method, or class in isolation, with external dependencies…
Smoke Test - CI/CD Glossary DefinitionSmoke Test: A smoke test is a small, fast set of checks that confirm the most critical paths of a build work…
Quality Gate - CI/CD Glossary DefinitionQuality Gate: A quality gate is a set of pass or fail conditions, such as minimum test coverage, no failing t…