Exemplo n.º 1
0
 public function testGetConfigFiles()
 {
     $actual = $this->model->getConfigFiles('*.xml');
     $this->assertNotEmpty($actual);
     foreach ($actual as $file) {
         $this->assertStringEndsWith('.xml', $file[0]);
     }
 }