You are here

public function XEEValidatorTest::providerValidXML in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.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

XEEValidatorTest

Code

public function providerValidXML() {
  $tests = [];
  foreach (glob('rawTestData/Reader/XEETestValid*.xml') as $file) {
    $tests[] = [
      realpath($file),
      file_get_contents($file),
    ];
  }
  return $tests;
}