Total Complexity | 2 |
Total Lines | 13 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | class ConnectionTest extends BaseTest |
||
22 | { |
||
23 | private $client; |
||
24 | |||
25 | public function setUp() |
||
26 | { |
||
27 | parent::setUp(); |
||
28 | $this->client = $this->objectManager->getObject(Rest::class, ['baseUriKey' => RestClientInterface::BASE_URI_KEY]); |
||
29 | } |
||
30 | |||
31 | public function testInstantiateRestClient() |
||
32 | { |
||
33 | $this->assertInstanceOf(RestClientInterface::class, $this->client); |
||
34 | } |
||
36 |