/**
  * Tests WirecardCEE_QPay_FrontendClient->setBasket()
  */
 public function testSetBasket()
 {
     $mock = $this->getMockBuilder('WirecardCEE_Stdlib_Basket')->getMock();
     $mock->expects($this->once())->method('getData')->will($this->returnValue(array()));
     $this->object->setBasket($mock);
 }