Skip to content
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
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"minimum-stability": "stable",
"require": {
"php": ">=5.5.0",
"phpunit/phpunit": "^4.8 || ^5.7",
"phpunit/phpunit": "^4.8.35 || ^5.7",
"phpunit/php-code-coverage": "^2.2 || ^4.0 || ^5.2",
"squizlabs/php_codesniffer": "^2.8",
"symfony/console": "^3.2",
Expand Down
3 changes: 2 additions & 1 deletion tests/Phug/DevTool/ApplicationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

namespace Phug\Test\DevTool;

use PHPUnit\Framework\TestCase;
use Phug\DevTool\Application;
use Symfony\Component\Console\Application as ConsoleApplication;
use Symfony\Component\Console\Input\StringInput;
Expand All @@ -12,7 +13,7 @@
*
* @coversDefaultClass \Phug\DevTool\Application
*/
class ApplicationTest extends \PHPUnit_Framework_TestCase
class ApplicationTest extends TestCase
{
/**
* @covers ::__construct
Expand Down
3 changes: 2 additions & 1 deletion tests/Phug/DevTool/Command/CheckCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

namespace Phug\Test\DevTool;

use PHPUnit\Framework\TestCase;
use Phug\DevTool\Application;
use Phug\DevTool\Command\CheckCommand;
use Symfony\Component\Console\Input\StringInput;
Expand All @@ -12,7 +13,7 @@
*
* @coversDefaultClass \Phug\DevTool\Command\CheckCommand
*/
class CheckCommandTest extends \PHPUnit_Framework_TestCase
class CheckCommandTest extends TestCase
{
/**
* @covers ::configure
Expand Down
3 changes: 2 additions & 1 deletion tests/Phug/DevTool/Command/CodeStyleCheckCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

namespace Phug\Test\DevTool;

use PHPUnit\Framework\TestCase;
use Phug\DevTool\Application;
use Phug\DevTool\Command\CodeStyleCheckCommand;
use Symfony\Component\Console\Input\StringInput;
Expand All @@ -12,7 +13,7 @@
*
* @coversDefaultClass \Phug\DevTool\Command\CodeStyleCheckCommand
*/
class CodeStyleCheckCommandTest extends \PHPUnit_Framework_TestCase
class CodeStyleCheckCommandTest extends TestCase
{
/**
* @covers ::configure
Expand Down
3 changes: 2 additions & 1 deletion tests/Phug/DevTool/Command/CodeStyleFixCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@

namespace Phug\Test\DevTool;

use PHPUnit\Framework\TestCase;
use Phug\DevTool\Command\CodeStyleFixCommand;

/**
* Class CodeStyleFixCommandTest.
*
* @coversDefaultClass \Phug\DevTool\Command\CodeStyleFixCommand
*/
class CodeStyleFixCommandTest extends \PHPUnit_Framework_TestCase
class CodeStyleFixCommandTest extends TestCase
{
/**
* @covers ::configure
Expand Down
3 changes: 2 additions & 1 deletion tests/Phug/DevTool/Command/CoverageCheckCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@

namespace Phug\Test\DevTool;

use PHPUnit\Framework\TestCase;
use Phug\DevTool\Command\CoverageCheckCommand;

/**
* Class CoverageCheckCommandTest.
*
* @coversDefaultClass \Phug\DevTool\Command\CoverageCheckCommand
*/
class CoverageCheckCommandTest extends \PHPUnit_Framework_TestCase
class CoverageCheckCommandTest extends TestCase
{
/**
* @covers ::configure
Expand Down
3 changes: 2 additions & 1 deletion tests/Phug/DevTool/Command/CoverageReportCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@

namespace Phug\Test\DevTool;

use PHPUnit\Framework\TestCase;
use Phug\DevTool\Command\CoverageReportCommand;

/**
* Class CoverageReportCommandTest.
*
* @coversDefaultClass \Phug\DevTool\Command\CoverageReportCommand
*/
class CoverageReportCommandTest extends \PHPUnit_Framework_TestCase
class CoverageReportCommandTest extends TestCase
{
/**
* @covers ::configure
Expand Down
3 changes: 2 additions & 1 deletion tests/Phug/DevTool/Command/InstallCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@

namespace Phug\Test\DevTool;

use PHPUnit\Framework\TestCase;
use Phug\DevTool\Command\InstallCommand;

/**
* Class InstallCommandTest.
*
* @coversDefaultClass \Phug\DevTool\Command\InstallCommand
*/
class InstallCommandTest extends \PHPUnit_Framework_TestCase
class InstallCommandTest extends TestCase
{
/**
* @covers ::configure
Expand Down
3 changes: 2 additions & 1 deletion tests/Phug/DevTool/Command/UnitTestsRunCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

namespace Phug\Test\DevTool;

use PHPUnit\Framework\TestCase;
use Phug\DevTool\Application;
use Phug\DevTool\Command\UnitTestsRunCommand;
use Symfony\Component\Console\Input\StringInput;
Expand All @@ -12,7 +13,7 @@
*
* @coversDefaultClass \Phug\DevTool\Command\UnitTestsRunCommand
*/
class UnitTestsRunCommandTest extends \PHPUnit_Framework_TestCase
class UnitTestsRunCommandTest extends TestCase
{
private static function remove($entity)
{
Expand Down