123456789101112131415161718192021222324252627282930 |
- <?php
- use Silex\WebTestCase;
- class controllersTest extends WebTestCase
- {
- public function createApplication()
- {
- $app = require __DIR__ . '/../src/app.php';
- require __DIR__ . '/../config/dev.php';
- require __DIR__ . '/../src/controllers.php';
- $app['session.test'] = true;
- return $this->app = $app;
- }
- public function testOk()
- {
- $this->assertEquals(1, 1);
- }
- // public function testGetHomepage()
- // {
- // $client = $this->createClient();
- // $client->followRedirects(true);
- // $crawler = $client->request('GET', '/');
- //
- // $this->assertTrue($client->getResponse()->isOk());
- // $this->assertContains('Welcome', $crawler->filter('body')->text());
- // }
- }
|