public function XEEValidatorTest::providerValidXML in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/unitTests/Classes/PHPExcel/Reader/XEEValidatorTest.php \XEEValidatorTest::providerValidXML()
File
- vendor/
phpoffice/ phpexcel/ unitTests/ Classes/ PHPExcel/ Reader/ XEEValidatorTest.php, line 46
Class
Code
public function providerValidXML() {
$tests = [];
foreach (glob('rawTestData/Reader/XEETestValid*.xml') as $file) {
$tests[] = [
realpath($file),
file_get_contents($file),
];
}
return $tests;
}