diff --git a/docs/en/02_Developer_Guides/06_Testing/00_Unit_Testing.md b/docs/en/02_Developer_Guides/06_Testing/00_Unit_Testing.md index 00808f339..82b97c034 100644 --- a/docs/en/02_Developer_Guides/06_Testing/00_Unit_Testing.md +++ b/docs/en/02_Developer_Guides/06_Testing/00_Unit_Testing.md @@ -61,7 +61,7 @@ documentation. ## Test Databases and Fixtures -SilverStripe tests create their own database when the test starts. New `ss_tmp` databases are created using the same +SilverStripe tests create their own database when the test starts and fixture files are specified. New `ss_tmp` databases are created using the same connection details you provide for the main website. The new `ss_tmp` database does not copy what is currently in your application database. To provide seed data use a [Fixture](fixtures) file. @@ -71,7 +71,7 @@ permissions to create new databases on your server.