| Total Complexity | 2 |
| Total Lines | 44 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | class EngagementServiceTest extends TestCase |
||
| 17 | { |
||
| 18 | |||
| 19 | private $config; |
||
| 20 | |||
| 21 | public function setUp() |
||
| 22 | { |
||
| 23 | require_once __DIR__ . '/../Services/MockClient.php'; |
||
| 24 | |||
| 25 | $accountId = 'foo'; |
||
| 26 | $consumerKey = 'bar'; |
||
| 27 | $consumerSecret = 'biz'; |
||
| 28 | $token = 'baz'; |
||
| 29 | $tokenSecret = 'bee'; |
||
| 30 | $username = 'noo'; |
||
| 31 | $this->config = new Config($accountId, $consumerKey, $consumerSecret, $token, $tokenSecret, $username); |
||
| 32 | } |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @covers \CwsOps\LivePerson\Services\AbstractService::__construct() |
||
| 36 | * @covers \CwsOps\LivePerson\Services\AbstractService::getRequest() |
||
| 37 | */ |
||
| 38 | public function testCanConstruct() |
||
| 60 | } |
||
| 61 | } |
||
| 62 |