summaryrefslogtreecommitdiffstats
path: root/common/tests/GuzzleHarness.php
diff options
context:
space:
mode:
Diffstat (limited to 'common/tests/GuzzleHarness.php')
-rw-r--r--common/tests/GuzzleHarness.php20
1 files changed, 20 insertions, 0 deletions
diff --git a/common/tests/GuzzleHarness.php b/common/tests/GuzzleHarness.php
new file mode 100644
index 0000000..a3f2ac4
--- /dev/null
+++ b/common/tests/GuzzleHarness.php
@@ -0,0 +1,20 @@
+<?php
+
+use \PHPUnit\Framework\TestCase;
+use \GuzzleHttp\Client;
+
+class GuzzleHarness extends TestCase
+{
+
+ /** @var GuzzleHttp\Client */
+ protected $client = null;
+
+ public function setUp()
+ {
+ $this->client = new Client([
+ 'base_uri' => 'http://127.0.0.1:8081',
+ 'timeout' => 1,
+ ]);
+ }
+
+} \ No newline at end of file