Exemplo n.º 1
0
 /**
  * Testing Utilities::getFileContents()
  *
  * @return null
  */
 public function testGetFileContents()
 {
     $sLicenseFile = "lizenz.txt";
     $sFilePath = getShopBasePath() . "Setup/En/{$sLicenseFile}";
     $oUtils = new Utilities();
     $this->assertEquals(file_get_contents($sFilePath), $oUtils->getFileContents($sFilePath));
 }