Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
5 | public function testIndexAction() |
||
6 | { |
||
7 | $response = $this->call( 'GET', '/unittest/profile' ); |
||
8 | |||
9 | $this->assertEquals( 200, $response->getStatusCode() ); |
||
10 | $this->assertStringContainsString( 'account-profile', (string) $response->getBody() ); |
||
11 | $this->assertStringContainsString( 'account-history', (string) $response->getBody() ); |
||
12 | $this->assertStringContainsString( 'account-favorite', (string) $response->getBody() ); |
||
13 | $this->assertStringContainsString( 'account-watch', (string) $response->getBody() ); |
||
14 | } |
||
42 |