Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 2 |
1 | <?php |
||
10 | public function testFullMethodsDataEntry() |
||
11 | { |
||
12 | $client = new Geckoboard(); |
||
13 | $this->assertSame('foo', $client->setApiKey('foo')->getApiKey()); |
||
14 | $config = new Collection(array('timeout' => 10, 'connect_timeout' => 1)); |
||
15 | $this->assertSame($config, $client->setGuzzleConfig($config)->getGuzzleConfig()); |
||
16 | $this->assertSame(10, $client->getGuzzleConfig('timeout')); |
||
17 | } |
||
18 | |||
34 |