/**
  * Tests WirecardCEE_QPay_FrontendClient->setWindowName()
  */
 public function testSetWindowName()
 {
     $windowName = 'phpUnitWindow';
     $this->object->setWindowName($windowName);
     $expected = array_merge($this->aExpectedRequestData, array(WirecardCEE_QPay_FrontendClient::WINDOW_NAME => $windowName));
     $this->assertAttributeEquals($expected, '_requestData', $this->object);
 }