| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 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 | } |
||
| 62 |