Initial commit with basic structure

This commit is contained in:
BackIsBachus
2017-09-17 08:09:11 +02:00
commit b0d0c4ebcc
26 changed files with 3587 additions and 0 deletions

26
tests/controllersTest.php Normal file
View File

@@ -0,0 +1,26 @@
<?php
use Silex\WebTestCase;
class controllersTest extends WebTestCase
{
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());
}
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;
}
}