/**
  * Test if buildDecodedFilePath function
  * builds proper path.
  */
 public function testBuildDecodedFilePath()
 {
     $expectedPath = realpath(__DIR__ . '/../data/decoded/self-test.php');
     $actualPath = $this->dataFileFixturesHelper->buildDecodedFilePath('self-test.php');
     $this->assertEquals($expectedPath, $actualPath);
 }