3 namespace Wallabag\CoreBundle\Tests\Controller
;
5 use Wallabag\CoreBundle\Tests\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->assertEquals(200, $client->getResponse()->getStatusCode());
19 public function testHowto()
21 $this->logInAs('admin');
22 $client = $this->getClient();
24 $client->request('GET', '/howto');
26 $this->assertEquals(200, $client->getResponse()->getStatusCode());