Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
16 | public function testCreateModuleUser() |
||
17 | { |
||
18 | $client = static::createClient(array(), array( |
||
19 | 'PHP_AUTH_USER' => '[email protected]', |
||
20 | 'PHP_AUTH_PW' => 'user', |
||
21 | )); |
||
22 | $client->request('GET', '/admin/moduleUser/new/1'); |
||
23 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); |
||
24 | } |
||
25 | |||
36 |