/**
  * Test if buildCreatedFilePath function
  * builds proper path.
  */
 public function testBuildCreatedFilePath()
 {
     $expectedPath = realpath(__DIR__ . '/../data/created/') . DIRECTORY_SEPARATOR . 'self-test';
     $actualPath = $this->dataFileFixturesHelper->buildCreatedFilePath('self-test');
     $this->assertEquals($expectedPath, $actualPath);
 }