| Total Complexity | 2 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 3 | class AAGoogleClientServiceTest extends SapphireTest |
||
| 4 | { |
||
| 5 | /** |
||
| 6 | * We want this process to be run in a separate process |
||
| 7 | * for constant definition reasons |
||
| 8 | * @var bool |
||
| 9 | */ |
||
| 10 | protected $runTestInSeparateProcess = true; |
||
| 11 | protected $preserveGlobalState = true; |
||
| 12 | |||
| 13 | |||
| 14 | /** |
||
| 15 | * @expectedException LogicException |
||
| 16 | */ |
||
| 17 | public function testException() |
||
| 18 | { |
||
| 19 | new GoogleClientService(); |
||
| 20 | } |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Validate it's constructed |
||
| 24 | */ |
||
| 25 | public function testCreation() |
||
| 30 | } |
||
| 31 | } |
||
| 32 |