Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7897003
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T08:02:32+00:00 2026-06-03T08:02:32+00:00

What are the current best practices for testing database interaction with Symfony2? I have

  • 0

What are the current best practices for testing database interaction with Symfony2? I have a simple CRUD setup and i want to make sure my testing is OK. Right now, i have 4 tests, each one making sure that create, update, delete and list actions are occurring ok.

I have two magic methods, __construct and __destruct, on my test case. Inside them, i call exec() with ‘php app/console …’ in order to create the database, create the schema and later on drop the database. However, this is SLOW as hell and it happens all the time when i have more than one test case.

How should i proceed when it comes to database testing and isolating such tests?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T08:02:34+00:00Added an answer on June 3, 2026 at 8:02 am

    Database testing is always slow as you need to create/drop your schema before/after each test. To avoid unnecessary operations, you could:

    • create schema in the ‘setUpBeforeClass’ method;
    • ensure your 4 tests are launched in one thread with the ‘@depend’ annotation;
    • drop schema in the ‘tearDownAfterClass’ method.

    The schema will be created/droped only once for your tests case.

    You can also setup doctrine to use an inmemory sqlite database (which is very fast):

    doctrine:
        dbal:
            driver: pdo_sqlite
            path: :memory:
            memory: true
    

    Anyway, ‘_construct’ and ‘_destruct’ should never be used in phpunit test cases, instead you should use ‘setUp’ and ‘tearDown’.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I read at many tutorials that the current best practices to create a new
Is there a general best-practices way of being notified when the current view controller
I would like to know what are best practices for database queries. I am
Assume a typical, database and session driven ASP application developed using best practices just
Following current best practices, what is the proper role for each of these? Based
What are the current best practices in the Rails world for displaying a calendar
I'm looking for a 'model' website/application written in ASP.Net that illustrates current best-practices of
I need an advice on best practices for DRYing view code. I have three
I'm looking for insight into best practices regarding database scripting for modifications that go
Anyone have any tips for best practices for mocking out facebook requests in functional

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.