Example #1
0
 /**
  * @dataProvider contentAsStringProvider
  */
 public function testContentAsString($content, $expectedContent)
 {
     $file = new File();
     $file->setContentFromString($content);
     $this->assertEquals($expectedContent, $file->getContentAsString());
     $this->assertEquals(0, ftell($file->getContent()->getData()), 'filepointer at the beginning of \\Doctrine\\ODM\\PHPCR\\Document\\Resource::data');
 }