Skip to content
Snippets Groups Projects
Commit cfb0fee0 authored by Demian Katz's avatar Demian Katz
Browse files

Simplified test.

parent 70b2813a
No related merge requests found
...@@ -46,16 +46,9 @@ class CartTest extends \PHPUnit_Framework_TestCase ...@@ -46,16 +46,9 @@ class CartTest extends \PHPUnit_Framework_TestCase
public function testCart() public function testCart()
{ {
// Create a mock cart object: // Create a mock cart object:
$mockLoader = $this->getMock( $cart = $this->getMockBuilder('VuFind\Cart')
'VuFind\Record\Loader', [], ->disableOriginalConstructor()
[ ->getMock();
$this->getMock('VuFindSearch\Service'),
$this->getMock('VuFind\RecordDriver\PluginManager')
]
);
$cart = $this->getMock(
'VuFind\Cart', null, [$mockLoader]
);
// Create a helper object: // Create a helper object:
$helper = new \VuFind\View\Helper\Root\Cart($cart); $helper = new \VuFind\View\Helper\Root\Cart($cart);
......
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