Test Database - CI/CD用語集の定義
test databaseは、自動テストだけが使用する隔離されたインスタンスで、実データに触れることなく自由に読み書きできます。
test databaseは、自動テストだけが使用する隔離されたデータベースインスタンスで、実データに触れることなく自由に読み書きできます。
CIでは、test databaseはjob用に起動され終了時に破棄されるservice container(Postgres、MySQL)であることが多く、各runにまっさらな状態を与えます。
関連ガイド
Fixture Data - CI/CD Glossary DefinitionFixture Data: Fixture data is a fixed, predefined dataset loaded before a test so the test runs against a kno…
Seed Data - CI/CD Glossary DefinitionSeed Data: Seed data is a set of initial records inserted into a database to give an application a usable bas…
Database Transaction - CI/CD Glossary DefinitionDatabase Transaction: A database transaction is a unit of work that either completes entirely or has no effec…