repo = $this->prophesize(PaginableRepositoryInterface::class); $this->adapter = new PaginableRepositoryAdapter($this->repo->reveal(), 'search', 'order'); } /** * @test */ public function getItemsFallbacksToFindList() { $this->repo->findList(10, 5, 'search', 'order')->shouldBeCalledTimes(1); $this->adapter->getItems(5, 10); } /** * @test */ public function countFallbacksToCountList() { $this->repo->countList('search')->shouldBeCalledTimes(1); $this->adapter->count(); } }