Inheritance: extends PHPUnit_Framework_TestCas\PHPUnit_Framework_TestCase, use trait Laravel\Lumen\Testing\Concerns\MakesHttpRequests
Example #1
0
 public function tearDown()
 {
     DB::connection()->rollBack();
     //rollback the transaction so the test case can be rerun without duplicate key exceptions
     DB::connection()->setPdo(null);
     //close the pdo connection to `avoid too many connections` errors
     parent::tearDown();
 }
 public function tearDown()
 {
     parent::tearDown();
     $this->removeDirectory(__DIR__ . '/../resources/');
     $this->removeDirectory(__DIR__ . '/../storage/');
 }