Skip to content
This repository has been archived by the owner on Sep 24, 2020. It is now read-only.

Commit

Permalink
Feature: Migrate to PHPUnit 6.5+ #346
Browse files Browse the repository at this point in the history
  • Loading branch information
ovr committed Jan 20, 2018
1 parent 15736a9 commit 6933531
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"regex-guard/regex-guard": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"phpunit/phpunit": "^6.5",
"squizlabs/php_codesniffer": "^3.0.2",
"symfony/var-dumper": "^3.3"
},
Expand Down
2 changes: 1 addition & 1 deletion tests/PHPSA/IssuesCollectorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
use PHPSA\IssuesCollector;
use PHPSA\Issue;

class IssuesCollectorTest extends \PHPUnit_Framework_TestCase
class IssuesCollectorTest extends TestCase
{
/**
* @covers \PHPSA\IssuesCollector::addIssue()
Expand Down
3 changes: 1 addition & 2 deletions tests/PHPSA/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,11 @@
use PHPSA\Node\Scalar\Nil;
use RuntimeException;
use Symfony\Component\Console\Output\ConsoleOutput;
use PHPSA\Definition\ClassDefinition;
use PHPSA\Application;
use PhpParser\Node;
use Webiny\Component\EventManager\EventManager;

class TestCase extends \PHPUnit_Framework_TestCase
class TestCase extends \PHPUnit\Framework\TestCase
{
/**
* @return \PHPSA\Context
Expand Down

0 comments on commit 6933531

Please sign in to comment.