summaryrefslogtreecommitdiffstats
path: root/tests/GuzzleHarness.php
blob: 7273ba89b4f20a34f94c369332856c75c701f90c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php

use \PHPUnit\Framework\TestCase;
use \GuzzleHttp\Client;

class GuzzleHarness extends TestCase
{

    /** @var GuzzleHttp\Client */
    protected $client = null;

    public function setUp() : void
    {
        $this->client = new Client([
            'base_uri' => 'http://127.0.0.1:8081',
            'timeout' => 1,
        ]);
    }
}