1 | <?php |
||
24 | abstract class AbstractCURLRequestTest extends PHPUnit_Framework_TestCase { |
||
25 | |||
26 | /** |
||
27 | * Resource path. |
||
28 | */ |
||
29 | const RESOURCE_PATH = "/testCall.php"; |
||
30 | |||
31 | /** |
||
32 | * cURL configuration. |
||
33 | * |
||
34 | * @var CURLConfiguration |
||
35 | */ |
||
36 | protected $configuration; |
||
37 | |||
38 | /** |
||
39 | * {@inheritdoc} |
||
40 | */ |
||
41 | protected function setUp() { |
||
48 | |||
49 | } |
||
50 |