Total Complexity | 2 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
8 | class PageControllerTest extends WebTestCase |
||
9 | { |
||
10 | public function testTerms() |
||
11 | { |
||
12 | $client = static::createClient(); |
||
13 | $crawler = $client->request( 'GET', '/unittest/de/EUR/terms' ); |
||
14 | |||
15 | $this->assertEquals( 1, $crawler->filter( 'body:contains("Terms")' )->count() ); |
||
16 | } |
||
17 | |||
18 | |||
19 | public function testPrivacy() |
||
25 | } |
||
26 | } |
||
27 |