3 namespace Tests\Wallabag\CoreBundle\Controller
;
5 use Tests\Wallabag\CoreBundle\WallabagCoreTestCase
;
7 class StaticControllerTest
extends WallabagCoreTestCase
9 public function testAbout()
11 $this->logInAs('admin');
12 $client = $this->getClient();
14 $client->request('GET', '/about');
16 $this->assertSame(200, $client->getResponse()->getStatusCode());
19 public function testHowto()
21 $this->logInAs('admin');
22 $client = $this->getClient();
24 $client->request('GET', '/howto');
26 $this->assertSame(200, $client->getResponse()->getStatusCode());