point-tools/src/Skobkin/Bundle/PointToolsBundle/Tests/ApplicationAvailabilityFunc...

30 lines
617 B
PHP
Raw Normal View History

2016-12-11 05:26:30 +00:00
<?php
namespace Skobkin\Bundle\PointToolsBundle\Tests;
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
class ApplicationAvailabilityFunctionalTest extends WebTestCase
{
/**
* @dataProvider urlProvider
*/
public function testPageIsSuccessful($url)
{
$client = self::createClient();
$client->request('GET', $url);
$this->assertTrue($client->getResponse()->isSuccessful());
}
public function urlProvider()
{
return [
['/'],
['/users/top'],
['/events/last'],
['/user/testuser']
];
}
}