Skip to content
Snippets Groups Projects
Commit 35d2467b authored by Ghislain Loas's avatar Ghislain Loas
Browse files

hotline_#16652_search_with_bib_filter rename abstract test class

parent e949d9bf
4 merge requests!529Hotline 6.56,!519Master,!518Hotline 6.55,!507Hotline #16652 search with bib filter
......@@ -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);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment