Пример #1
0
 /**
  * @test
  */
 public function extractTextUsesTParameter()
 {
     $file = new File(array('identifier' => 'testWORD.doc', 'name' => 'testWORD.doc'), $this->documentsStorageMock);
     $service = new AppService($this->getConfiguration());
     $service->extractText($file);
     $this->assertContains('-t', ExecRecorder::$execCommand);
 }