/**
  * @test
  * @group command-create
  * @group command
  */
 public function ファイルの作成()
 {
     $path = 'sample.txt';
     $this->file->setpath($path);
     $this->file->create();
     $this->expectoutputstring($path . 'を作成しました');
 }