17 lines
406 B
PHP
17 lines
406 B
PHP
<?php
|
|
|
|
namespace OAuth2;
|
|
|
|
class ResponseTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
public function testRenderAsXml()
|
|
{
|
|
$response = new Response(array(
|
|
'foo' => 'bar',
|
|
'halland' => 'oates',
|
|
));
|
|
|
|
$string = $response->getResponseBody('xml');
|
|
$this->assertContains('<response><foo>bar</foo><halland>oates</halland></response>', $string);
|
|
}
|
|
}
|