.../Drupal/Tests/Phpunit4CompatibilityTest.php | 89 ---------------------- 1 file changed, 89 deletions(-) diff --git a/core/tests/Drupal/Tests/Phpunit4CompatibilityTest.php b/core/tests/Drupal/Tests/Phpunit4CompatibilityTest.php deleted file mode 100644 index 639e6fa35f..0000000000 --- a/core/tests/Drupal/Tests/Phpunit4CompatibilityTest.php +++ /dev/null @@ -1,89 +0,0 @@ -assertTrue(class_exists('\PHPUnit_Framework_AssertionFailedError')); - } - - /** - * Tests existence of \PHPUnit_Framework_Constraint_Count. - */ - public function testFrameworkConstraintCount() { - $this->assertTrue(class_exists('\PHPUnit_Framework_Constraint_Count')); - } - - /** - * Tests existence of \PHPUnit_Framework_Error. - */ - public function testFrameworkError() { - $this->assertTrue(class_exists('\PHPUnit_Framework_Error')); - } - - /** - * Tests existence of \PHPUnit_Framework_Error_Warning. - */ - public function FrameworkErrorWarning() { - $this->assertTrue(class_exists('\PHPUnit_Framework_Error_Warning')); - } - - /** - * Tests existence of \PHPUnit_Framework_Exception. - */ - public function testFrameworkException() { - $this->assertTrue(class_exists('\PHPUnit_Framework_Exception')); - } - - /** - * Tests existence of \PHPUnit_Framework_ExpectationFailedException. - */ - public function testFrameworkExpectationFailedException() { - $this->assertTrue(class_exists('\PHPUnit_Framework_ExpectationFailedException')); - } - - /** - * Tests existence of \PHPUnit_Framework_MockObject_Matcher_InvokedRecorder. - */ - public function testFrameworkMockObjectMatcherInvokedRecorder() { - $this->assertTrue(class_exists('\PHPUnit_Framework_MockObject_Matcher_InvokedRecorder')); - } - - /** - * Tests existence of \PHPUnit_Framework_SkippedTestError. - */ - public function testFrameworkSkippedTestError() { - $this->assertTrue(class_exists('\PHPUnit_Framework_SkippedTestError')); - } - - /** - * Tests existence of \PHPUnit_Framework_TestCase. - */ - public function testFrameworkTestCase() { - $this->assertTrue(class_exists('\PHPUnit_Framework_TestCase')); - } - - /** - * Tests existence of \PHPUnit_Util_Test. - */ - public function testUtilTest() { - $this->assertTrue(class_exists('\PHPUnit_Util_Test')); - } - - /** - * Tests existence of \PHPUnit_Util_XML. - */ - public function testUtilXml() { - $this->assertTrue(class_exists('\PHPUnit_Util_XML')); - } - -}