Questions tagged as 'testcase'

1
answer

How to improve TestCase speed in Django?

I'm running a test in Django with just two querys and in the timer it's taking 1 min and 10 seconds to finalize the test. Is there a setting I can adjust to speed up testing? I'm currently using postgresql in the project database.     
asked by 04.09.2015 / 22:38
2
answers

How to check if the class was instantiated through the DataProvider using PHP Unit

Could anyone make an example? Considering my class below: class MinhaClasse { private $param; public function __construct($params = []) { return null; } } I have my test class: require_once "MinhaClasse.php"; clas...
asked by 02.09.2015 / 15:08