public function testConstruct()
 {
     // response should decode URL format data
     $response = new ExpressAuthorizeResponse('example=value&foo=bar');
     $this->assertEquals(array('example' => 'value', 'foo' => 'bar'), $response->getData());
 }