| Total Complexity | 3 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | class AccountControllerTest extends WebTestCase |
||
| 10 | { |
||
| 11 | protected function setUp() : void |
||
| 15 | } |
||
| 16 | |||
| 17 | |||
| 18 | public function testAccount() |
||
| 19 | { |
||
| 20 | $client = static::createClient(); |
||
| 21 | $client->request( 'GET', '/unittest/de/EUR/profile/' ); |
||
| 22 | |||
| 23 | $this->assertStringContainsString( 'aimeos account-profile', $client->getResponse()->getContent() ); |
||
| 24 | $this->assertStringContainsString( 'aimeos account-history', $client->getResponse()->getContent() ); |
||
| 25 | $this->assertStringContainsString( 'aimeos account-favorite', $client->getResponse()->getContent() ); |
||
| 26 | $this->assertStringContainsString( 'aimeos account-watch', $client->getResponse()->getContent() ); |
||
| 27 | } |
||
| 28 | |||
| 29 | |||
| 30 | public function testDownload() |
||
| 36 | } |
||
| 37 | } |
||
| 38 |