for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/* Copyright (C) 2017 Michael Giesler
*
* This file is part of Dembelo.
* Dembelo is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* Dembelo is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License 3 for more details.
* You should have received a copy of the GNU Affero General Public License 3
* along with Dembelo. If not, see <http://www.gnu.org/licenses/>.
*/
namespace DembeloMain\IntegrationTests\Controller\Dashboard;
use DembeloMain\IntegrationTests\WebTestCase;
/**
* @group integration
class DefaultControllerTest extends WebTestCase
{
* Tests the index action.
public function testIndex()
$client = static::createClient();
$crawler = $client->request('GET', '/');
$this->assertEquals(200, $client->getResponse()->getStatusCode());
$this->assertTrue($crawler->filter('html:contains("was zu lesen")')->count() > 0);
}