コード例 #1
0
 /**
  * @test
  */
 public function shouldImportGamesInAcceptableTime()
 {
     // given
     $this->startTimer();
     $import = new GameImport();
     $fileId = $this->mockFileUpload('pgn/test-timer.pgn');
     // when
     $games = $import->import(array("pgnFile" => $fileId, "databaseId" => 1));
     $time = $this->getElapsed(__FUNCTION__);
     // then
     $this->assertEquals(25, count($games));
     $this->assertLessThan(12.5, $time);
 }