Skip to content

Commit

Permalink
add test
Browse files Browse the repository at this point in the history
  • Loading branch information
Kocal committed Aug 6, 2019
1 parent d68a50e commit 282af6b
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions tests/MyWebTest.php
@@ -0,0 +1,17 @@
<?php

namespace App\Tests;

use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;

class MyWebTest extends WebTestCase
{
public function testSomething()
{
$client = static::createClient();
var_dump($client);

$client->request('GET', '/');
var_dump($client->getResponse());
}
}

0 comments on commit 282af6b

Please sign in to comment.