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