chill-bundles/Tests/Controller/ThirdPartyControllerTest.php
2019-06-11 11:49:27 +02:00

31 lines
592 B
PHP

<?php
namespace Chill\ThirdPartyBundle\Tests\Controller;
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
class ThirdPartyControllerTest extends WebTestCase
{
public function testIndex()
{
$client = static::createClient();
$crawler = $client->request('GET', '/index');
}
public function testNew()
{
$client = static::createClient();
$crawler = $client->request('GET', '/new');
}
public function testUpdate()
{
$client = static::createClient();
$crawler = $client->request('GET', '/update');
}
}