Example #1
0
 /**
  * @param string $module
  * @param string $controller
  * @param string $fileName
  *
  * @covers Mage_Backend_Controller_Router_Default::getControllerFileName
  * @dataProvider getControllerFileNameDataProvider
  */
 public function testGetControllerFileName($module, $controller, $fileName)
 {
     $file = $this->_model->getControllerFileName($module, $controller);
     $this->assertStringEndsWith($fileName, $file);
 }