Skip to content

Using the new PHPUnit namespace #641

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 6, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,14 @@
use App\Form\DataTransformer\TagArrayToStringTransformer;
use Doctrine\Common\Persistence\ObjectManager;
use Doctrine\ORM\EntityRepository;
use PHPUnit\Framework\TestCase;

/**
* Tests that tags are transformed correctly using the data transformer.
*
* See https://symfony.com/doc/current/testing/database.html
*/
class TagArrayToStringTransformerTest extends \PHPUnit\Framework\TestCase
class TagArrayToStringTransformerTest extends TestCase
{
/**
* Ensures that tags are created correctly.
Expand Down
3 changes: 2 additions & 1 deletion tests/Utils/SluggerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
namespace App\Tests\Utils;

use App\Utils\Slugger;
use PHPUnit\Framework\TestCase;

/**
* Unit test for the application utils.
Expand All @@ -23,7 +24,7 @@
* $ cd your-symfony-project/
* $ ./vendor/bin/phpunit
*/
class SluggerTest extends \PHPUnit_Framework_TestCase
class SluggerTest extends TestCase
{
/**
* @dataProvider getSlugs
Expand Down
3 changes: 2 additions & 1 deletion tests/Utils/ValidatorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@
namespace App\Tests\Utils;

use App\Utils\Validator;
use PHPUnit\Framework\TestCase;

class ValidatorTest extends \PHPUnit_Framework_TestCase
class ValidatorTest extends TestCase
{
private $object;

Expand Down