tearDown() public method

Clean up the testing environment before the next test.
public tearDown ( ) : void
return void
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/');
 }