Skip to content

Commit 8eaf716

Browse files
authored
Merge pull request #139 from stronk7/bump_phpunit_65
Bump to PHPUnit 6.5.x
2 parents 78bc706 + a87b668 commit 8eaf716

35 files changed

+448
-220
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
"padraic/phar-updater": "^1.0"
9696
},
9797
"require-dev": {
98-
"phpunit/phpunit": "^5.7",
98+
"phpunit/phpunit": "^6.5",
9999
"mockery/mockery": "^1.3"
100100
},
101101
"config": {

composer.lock

Lines changed: 414 additions & 186 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/Bridge/MoodlePluginCollectionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
use MoodlePluginCI\Bridge\MoodlePluginCollection;
1616
use MoodlePluginCI\Tests\Fake\Bridge\DummyMoodlePlugin;
1717

18-
class MoodlePluginCollectionTest extends \PHPUnit_Framework_TestCase
18+
class MoodlePluginCollectionTest extends \PHPUnit\Framework\TestCase
1919
{
2020
public function testSortByDependencies()
2121
{

tests/Bridge/MoodleTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
use MoodlePluginCI\Bridge\Moodle;
1616

17-
class MoodleTest extends \PHPUnit_Framework_TestCase
17+
class MoodleTest extends \PHPUnit\Framework\TestCase
1818
{
1919
public function testGetBranch()
2020
{

tests/Command/CopyPasteDetectorCommandTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
use Symfony\Component\Console\Application;
1818
use Symfony\Component\Console\Tester\CommandTester;
1919

20-
class CopyPasteDetectorCommandTest extends \PHPUnit_Framework_TestCase
20+
class CopyPasteDetectorCommandTest extends \PHPUnit\Framework\TestCase
2121
{
2222
private $pluginDir;
2323

tests/Command/MessDetectorCommandTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
use Symfony\Component\Console\Application;
1818
use Symfony\Component\Console\Tester\CommandTester;
1919

20-
class MessDetectorCommandTest extends \PHPUnit_Framework_TestCase
20+
class MessDetectorCommandTest extends \PHPUnit\Framework\TestCase
2121
{
2222
private $pluginDir;
2323

tests/Command/PHPLintCommandTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
use Symfony\Component\Console\Application;
1818
use Symfony\Component\Console\Tester\CommandTester;
1919

20-
class PHPLintCommandTest extends \PHPUnit_Framework_TestCase
20+
class PHPLintCommandTest extends \PHPUnit\Framework\TestCase
2121
{
2222
private $pluginDir;
2323

tests/Command/ParallelCommandTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
use Symfony\Component\Console\Tester\CommandTester;
2020
use Symfony\Component\Process\Process;
2121

22-
class ParallelCommandTest extends \PHPUnit_Framework_TestCase
22+
class ParallelCommandTest extends \PHPUnit\Framework\TestCase
2323
{
2424
protected function executeCommand(array $processes)
2525
{

tests/FileUpdatesTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
namespace MoodlePluginCI\Tests;
1414

15-
class FileUpdatesTest extends \PHPUnit_Framework_TestCase
15+
class FileUpdatesTest extends \PHPUnit\Framework\TestCase
1616
{
1717
public function testLocalCIPackageJSON()
1818
{

tests/FilesystemTestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
use Symfony\Component\Filesystem\Filesystem;
1616

17-
class FilesystemTestCase extends \PHPUnit_Framework_TestCase
17+
class FilesystemTestCase extends \PHPUnit\Framework\TestCase
1818
{
1919
/**
2020
* @var string

0 commit comments

Comments
 (0)