summaryrefslogtreecommitdiffstats
path: root/tests/GuzzleHarness.php
diff options
context:
space:
mode:
authornashe <thomas@chauchefoin.fr>2017-10-17 09:42:17 +0200
committernashe <thomas@chauchefoin.fr>2017-10-17 09:42:17 +0200
commitdb2ab071c73feb6ac510bfdc6ee5b9ddad1566ea (patch)
tree874f2b2e344c3f80f99c6985da0f86ce48815126 /tests/GuzzleHarness.php
parentd68019ab377f1758e7e8a3f7962f7a6dca56fde3 (diff)
downloadplanet-db2ab071c73feb6ac510bfdc6ee5b9ddad1566ea.tar
planet-db2ab071c73feb6ac510bfdc6ee5b9ddad1566ea.tar.gz
planet-db2ab071c73feb6ac510bfdc6ee5b9ddad1566ea.tar.bz2
planet-db2ab071c73feb6ac510bfdc6ee5b9ddad1566ea.tar.xz
planet-db2ab071c73feb6ac510bfdc6ee5b9ddad1566ea.zip
Add GuzzleHarness and use it
Diffstat (limited to 'tests/GuzzleHarness.php')
-rw-r--r--tests/GuzzleHarness.php20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/GuzzleHarness.php b/tests/GuzzleHarness.php
new file mode 100644
index 0000000..a3f2ac4
--- /dev/null
+++ b/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