1
0
mirror of synced 2024-11-22 21:36:06 +03:00
api-client-php/tests/RetailCrm/Tests/ApiClientTest.php

34 lines
485 B
PHP
Raw Normal View History

<?php
2016-07-22 01:01:47 +03:00
/**
* PHP version 5.4
2016-07-22 01:01:47 +03:00
*
* API client test class
*
* @category RetailCrm
* @package RetailCrm
*/
namespace RetailCrm\Tests;
use RetailCrm\Test\TestCase;
2016-07-22 01:01:47 +03:00
/**
* Class ApiClientTest
*
* @category RetailCrm
* @package RetailCrm
*/
class ApiClientTest extends TestCase
{
/**
* @group client
*/
public function testConstruct()
{
$client = static::getApiClient();
static::assertInstanceOf('RetailCrm\ApiClient', $client);
}
}