1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30:
<?php
namespace Guzzle\Tests\Service\Command\LocationVisitor\Response;
use Guzzle\Tests\Service\Mock\Command\MockCommand;
use Guzzle\Http\Message\Response;
abstract class AbstractResponseVisitorTest extends \Guzzle\Tests\GuzzleTestCase
{
protected $response;
protected $command;
protected $value;
public function setUp()
{
$this->value = array();
$this->command = new MockCommand();
$this->response = new Response(200, array(
'X-Foo' => 'bar',
'Content-Length' => 3,
'Content-Type' => 'text/plain'
), 'Foo');
}
}