/**
  * Tests WirecardCEE_QMore_FrontendClient->setAutoDeposit()
  */
 public function testSetAutoDeposit()
 {
     $autoDeposit = 'yes';
     $this->object->setAutoDeposit($autoDeposit);
     $expected = array_merge($this->aExpectedRequestData, array(WirecardCEE_QMore_FrontendClient::AUTO_DEPOSIT => $autoDeposit));
     $this->assertAttributeEquals($expected, '_requestData', $this->object);
 }