Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / tests / Drupal / Tests / PhpunitCompatibilityTraitTest.php
index 145980bfe531c7ca752bcf00c629d2c67ad1f4c6..790831a6d7d0a157d32181b99ee28ebe01f04191 100644 (file)
@@ -52,6 +52,7 @@ class PhpunitCompatibilityTraitTest extends UnitTestCase {
  * Test class for \PHPUnit\Framework\TestCase in PHPUnit 4.
  */
 class Phpunit4TestClass {
+
   public function getMock($originalClassName) {
     return 'PHPUnit 4';
   }
@@ -62,6 +63,7 @@ class Phpunit4TestClass {
  * Test class for \PHPUnit\Framework\TestCase in PHPUnit 6.
  */
 class Phpunit6TestClass {
+
   public function createMock($originalClassName) {
     return 'PHPUnit 6';
   }
@@ -76,6 +78,7 @@ class Phpunit6TestClass {
  * Test double for PHPUnit_Framework_MockObject_MockBuilder.
  */
 class Mockbuilder {
+
   public function __call($name, $arguments) {
     return $this;
   }