public function PHPExcelTest::tearDown in PHPExcel 8.3
Same name and namespace in other branches
- 6.2 tests/phpexcel.test \PHPExcelTest::tearDown()
- 6 tests/phpexcel.test \PHPExcelTest::tearDown()
- 7.3 tests/phpexcel.test \PHPExcelTest::tearDown()
- 7.2 tests/phpexcel.test \PHPExcelTest::tearDown()
File
- tests/
phpexcel.test, line 40 - Defines the test case for phpexcel
Class
- PHPExcelTest
- @file Defines the test case for phpexcel
Code
public function tearDown() {
@unlink($this->single_worksheet_file);
@unlink($this->issue_1988868_file);
@unlink($this->multiple_worksheet_file);
@unlink($this->no_headers_file);
@unlink($this->db_result_file);
@unlink($this->template_file);
parent::tearDown();
}