Support the ongoing development of Laravel.io →
posted 7 years ago

usually, unit tests create a new database and fill them based on the test, to always have a clean environment for each test.

Silly question: as I have to create tons of unit test based on an already populated DB (in a dev environment), I can't create/fill database every time. (in example, in our application the order can't be deleted, thus, creating a new test for order creation, will put data on DB that can't be removed via application).

Is it correct to use an existing database and run test directly over it ?

Last updated 2 years ago.
0

No, you want a separate database for testing, not a database you need. Ideally, you'd use a database within memory so that after every test, the test database in memory goes poof. After all, you're not testing the data itself, you're testing whether you get the correct data based on whatever you input every time.

0

Sign in to participate in this thread!

Eventy

Your banner here too?

guestisp guestisp Joined 17 Apr 2014

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2025 Laravel.io - All rights reserved.