mirror of
https://github.com/ToxicCrack/PrintABrick.git
synced 2025-05-18 05:10:07 -07:00
26 lines
766 B
PHP
26 lines
766 B
PHP
<?php
|
|
|
|
namespace AppBundle\Tests\Controller\LDraw;
|
|
|
|
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
|
|
|
|
class CategoryControllerTest extends WebTestCase
|
|
{
|
|
/*
|
|
public function testCompleteScenario()
|
|
{
|
|
// Create a new client to browse the application
|
|
$client = static::createClient();
|
|
|
|
// Go to the list view
|
|
$crawler = $client->request('GET', '/ldraw_category/');
|
|
$this->assertEquals(200, $client->getResponse()->getStatusCode(), "Unexpected HTTP status code for GET /ldraw_category/");
|
|
|
|
// Go to the show view
|
|
$crawler = $client->click($crawler->selectLink('show')->link());
|
|
$this->assertEquals(200, $client->getResponse()->getStatusCode(), "Unexpected HTTP status code");
|
|
}
|
|
|
|
*/
|
|
}
|