Skip to content

Commit

Permalink
add site on trash item
Browse files Browse the repository at this point in the history
  • Loading branch information
veolys-nanne committed Oct 6, 2016
1 parent e2a1306 commit 3f685aa
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ public function providePaginateAndSearch()
*/
public function testCount()
{
$groups = $this->repository->count();
$configuration = PaginateFinderConfiguration::generateFromVariable($this->getDescriptionColumnEntity(), array());
$groups = $this->repository->count($configuration);
$this->assertEquals(7, $groups);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ public function providePaginateAndSearch()
*/
public function testCount()
{
$users = $this->repository->count();
$configuration = FinderConfiguration::generateFromVariable($this->getDescriptionColumnEntity(), array());
$users = $this->repository->count($configuration);
$this->assertEquals(7, $users);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ public function providePaginateAndSearch()
*/
public function testCount()
{
$worflowFunctions = $this->repository->count();
$configuration = FinderConfiguration::generateFromVariable($this->getDescriptionColumnEntity(), array());
$worflowFunctions = $this->repository->count($configuration);
$this->assertEquals(2, $worflowFunctions);
}

Expand Down

0 comments on commit 3f685aa

Please sign in to comment.