/**
  * Tests WirecardCEE_QMore_FrontendClient->setPendingUrl()
  */
 public function testSetPendingUrl()
 {
     $pendingUrl = 'http://foo.bar.com/tests/pending.php';
     $this->object->setPendingUrl($pendingUrl);
     $expected = array_merge($this->aExpectedRequestData, array(WirecardCEE_QMore_FrontendClient::PENDING_URL => $pendingUrl));
     $this->assertAttributeEquals($expected, '_requestData', $this->object);
 }