Greetings;
I am writing my integration tests so I would like to know what is the best practice for integration testing a database driven php site? Should I add and delete data in setup() and teardown() respectively for every test or should my test database just have the test data entered prior to any testing?
I am not asking about what tools to use but rather the approach. Thanks in advance.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
|
|
in my point of view the strategy to be used in tests, is a very personal decision of team. Usually in my projects I use BDD (Behavior driven development) to assurance the functionalities of API. For example (Features of CRUD):
And for specifics components of model I use TDD (Test driven development) using the concepts of mock... But, the main difficult are in design of application... not in tests :D []'s |
|||||
|