PHPUnit is a unit testing framework that is written in php. It is based on the JUnit for Java framework
5
votes
3answers
396 views
Time consuming Unit test for support for 100,000 records: Am I doing it right?
I am working on adding test coverage for an application that previously didn't have any. One additional requirement that emerged is that one of the background processes should be able to process ...
1
vote
4answers
311 views
Unit Test code generation
We have a project that was written over a period of 2 years, but has a poorly designed architecture and not unit tests.
The software works well, but we're at the point where we want to refactor some ...
1
vote
3answers
239 views
Unit-testing functions without business logic (only checks) [duplicate]
My team is trying to find out the best way to test one of our components; the main scope is to check if the user/actor has the right to complete the operation requested. The component is formed by ...
2
votes
1answer
147 views
Specifying Query in Unit Test
When writing unit tests, should I specify the query that will be performed for interacting with the database?
I can see both sides of this. On one hand, I want to make sure that the query that I ...