public function testFindUsers() { $this->repository->expects($this->once())->method('findAll')->will($this->returnValue(array())); $this->userManager->findUsers(); }
/** * {@inheritdoc} */ public function findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null) { return parent::findUsers($criteria, $orderBy, $limit, $offset); }