Total Complexity | 3 |
Total Lines | 42 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
22 | class RequestTest extends TestCase |
||
23 | { |
||
24 | |||
25 | private $config; |
||
26 | |||
27 | public function setUp() |
||
28 | { |
||
29 | $accountId = 'foo'; |
||
30 | $consumerKey = 'bar'; |
||
31 | $consumerSecret = 'biz'; |
||
32 | $token = 'baz'; |
||
33 | $tokenSecret = 'bee'; |
||
34 | $username = 'noo'; |
||
35 | $this->config = new Config($accountId, $consumerKey, $consumerSecret, $token, $tokenSecret, $username); |
||
36 | } |
||
37 | |||
38 | /** |
||
39 | * |
||
40 | * @covers \CwsOps\LivePerson\Rest\Request::__construct |
||
41 | */ |
||
42 | public function testCanConstructWithDefaultOptions() |
||
47 | } |
||
48 | |||
49 | /** |
||
50 | * @covers \CwsOps\LivePerson\Rest\Request::getClient() |
||
51 | * @covers \CwsOps\LivePerson\Rest\Request::setClient() |
||
52 | */ |
||
53 | public function testCanSetAndGetClient() |
||
66 |