Skip to content
Snippets Groups Projects
Commit 6453927d authored by Patrick Barroca's avatar Patrick Barroca :grin:
Browse files

rel #27067 : forgotten parent::setUp()

parent cb33dcdc
Branches
Tags 6.31
3 merge requests!1132Hotline#29412 images des articles dans le resultat de recherche,!1016Dev#27067 koha restful suggestion service,!1004Dev#27067 koha restful suggestion service
...@@ -22,11 +22,15 @@ ...@@ -22,11 +22,15 @@
abstract class KohaRestfulTestCase extends ModelTestCase { abstract class KohaRestfulTestCase extends ModelTestCase {
const BASE_URL = 'http://cat-aficg55.biblibre.com/cgi-bin/koha/'; const BASE_URL = 'http://cat-aficg55.biblibre.com/cgi-bin/koha/';
protected $_storm_default_to_volatile = true;
protected $mock_web_client; protected
protected $service; $_storm_default_to_volatile = true,
$mock_web_client,
$service;
public function setUp() { public function setUp() {
parent::setUp();
$this->fixture('Class_AdminVar', ['id' => 'KOHA_MULTI_SITES', 'valeur' => '']); $this->fixture('Class_AdminVar', ['id' => 'KOHA_MULTI_SITES', 'valeur' => '']);
$this->mock_web_client = $this->mock(); $this->mock_web_client = $this->mock();
......
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