Total Complexity | 2 |
Total Lines | 39 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
8 | class AccountTest extends CloudApiTestCase |
||
9 | { |
||
10 | |||
11 | protected $properties = [ |
||
12 | 'id', |
||
13 | 'uuid', |
||
14 | 'name', |
||
15 | 'first_name', |
||
16 | 'last_name', |
||
17 | 'last_login_at', |
||
18 | 'created_at', |
||
19 | 'mail', |
||
20 | 'phone', |
||
21 | 'job_title', |
||
22 | 'job_function', |
||
23 | 'company', |
||
24 | 'country', |
||
25 | 'state', |
||
26 | 'timezone', |
||
27 | 'picture_url', |
||
28 | 'features', |
||
29 | 'flags', |
||
30 | 'metadata', |
||
31 | 'links' |
||
32 | ]; |
||
33 | |||
34 | public function testGetAccount() |
||
50 |