PHPUnit: made compatible with v6, which is now namespaced.

This commit is contained in:
Christian Bläul
2017-11-25 12:59:06 +01:00
committed by Fonata
parent fd5fb96bce
commit db1e242d07
6 changed files with 19 additions and 4 deletions

View File

@@ -0,0 +1,11 @@
<?php
namespace PHPUnit\Framework;
// Only needed to keep unit test code compatible with older PHPUnit versions
/** @noinspection PhpUndefinedClassInspection */
/** @noinspection AutoloadingIssuesInspection */
class TestCase extends \PHPUnit_Framework_TestCase {
}