From 35d2467b6de805dc2561dad08b3b513894214d2b Mon Sep 17 00:00:00 2001 From: Ghislain Loas <ghislo@sandbox.pergame.net> Date: Mon, 3 Nov 2014 13:13:50 +0100 Subject: [PATCH] hotline_#16652_search_with_bib_filter rename abstract test class --- .../modules/opac/controllers/BibControllerTest.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/application/modules/opac/controllers/BibControllerTest.php b/tests/application/modules/opac/controllers/BibControllerTest.php index 5bda8efbf02..7739e18a135 100644 --- a/tests/application/modules/opac/controllers/BibControllerTest.php +++ b/tests/application/modules/opac/controllers/BibControllerTest.php @@ -323,7 +323,7 @@ class BibControllerBibViewInexistantTest extends BibControllerWithZoneTestCase { -abstract class BibControllerBibSelectionAbstractTestCase extends AbstractControllerTestCase { +abstract class BibControllerSelectionTestCase extends AbstractControllerTestCase { public function setUp() { parent::setUp(); $_SESSION['selection_bib'] = ['id_bibs' => []]; @@ -362,7 +362,7 @@ abstract class BibControllerBibSelectionAbstractTestCase extends AbstractControl -class BibControllerBibSelectionWithEmptySessionTest extends BibControllerBibSelectionAbstractTestCase { +class BibControllerBibSelectionWithEmptySessionTest extends BibControllerSelectionTestCase { public function setUp() { parent::setUp(); $this->dispatch('bib/selection', true); @@ -395,7 +395,7 @@ class BibControllerBibSelectionWithEmptySessionTest extends BibControllerBibSele -class BibControllerBibSelectionWithBibsIdsInSessionTest extends BibControllerBibSelectionAbstractTestCase { +class BibControllerBibSelectionWithBibsIdsInSessionTest extends BibControllerSelectionTestCase { public function setUp() { parent::setUp(); $_SESSION['selection_bib'] = ['id_bibs' => [1, 2]]; @@ -424,7 +424,7 @@ class BibControllerBibSelectionWithBibsIdsInSessionTest extends BibControllerBib -class BibControllerBibSelectionPostDispatchTest extends BibControllerBibSelectionAbstractTestCase { +class BibControllerBibSelectionPostDispatchTest extends BibControllerSelectionTestCase { public function setUp() { parent::setUp(); $this->postDispatch('bib/selection', ['bib_select' => [1, 2]]); @@ -452,7 +452,7 @@ class BibControllerBibSelectionPostDispatchTest extends BibControllerBibSelectio -class BibControllerBibSelectionWithProfilIdParamTest extends BibControllerBibSelectionAbstractTestCase { +class BibControllerBibSelectionWithProfilIdParamTest extends BibControllerSelectionTestCase { public function setUp() { parent::setUp(); $this->dispatch('opac/index/index/id_profil/1', true); -- GitLab