Inheritance: implements Neos\Flow\Persistence\QueryResultInterface
コード例 #1
0
 /**
  * @test
  */
 public function countCallsCountOnTheQueryOnlyOnce()
 {
     $this->query->expects($this->once())->method('count')->will($this->returnValue(321));
     $this->queryResult->count();
     $this->assertEquals(321, $this->queryResult->count());
 }