/**
  * @param string $path
  * @param string $expected
  * @dataProvider ucFileNameInPathProperlyUpperCasesFileNamesDataProvider
  * @test
  */
 public function ucFileNameInPathProperlyUpperCasesFileNames($path, $expected)
 {
     $this->assertSame($expected, $this->view->_call('ucFileNameInPath', $path));
 }
 /**
  * @test
  */
 public function viewIsPlacedInViewHelperVariableContainer()
 {
     $this->viewHelperVariableContainer->expects($this->once())->method('setView')->with($this->view);
     $this->view->setRenderingContext($this->renderingContext);
 }