Most voted "testcase" questions
2 questions
Sort by count of
-
0
votes2
answers769
viewsHow to check if the class was instantiated via Dataprovider using PHP Unit
Could someone make an example? Considering my class below: class MinhaClasse { private $param; public function __construct(array $params = []) { $this->param = $params; } } I have my test class:…
-
0
votes1
answer51
viewsHow to improve Testcase speed in Django?
I’m running a test on Django with only two querys and the timer is taking 1 min and 10 seconds to complete the test. Is there any settings you can adjust to speed up the tests? I’m currently using…