From b2f0062c70c5cf1d6415e897e01ce18d43341b29 Mon Sep 17 00:00:00 2001 From: Simon Date: Mon, 16 Oct 2017 18:52:06 +0100 Subject: [PATCH] Update PHPUnit Example Test stub to correctly reference the PHPUnit TestCase class. --- src/Parts/PhpUnit/stubs/tests/ExampleTest.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) mode change 100644 => 100755 src/Parts/PhpUnit/stubs/tests/ExampleTest.php diff --git a/src/Parts/PhpUnit/stubs/tests/ExampleTest.php b/src/Parts/PhpUnit/stubs/tests/ExampleTest.php old mode 100644 new mode 100755 index 284d79b..b49327c --- a/src/Parts/PhpUnit/stubs/tests/ExampleTest.php +++ b/src/Parts/PhpUnit/stubs/tests/ExampleTest.php @@ -2,7 +2,9 @@ namespace Foo\Bar\Tests; -class ExampleTest extends \PHPUnit_Framework_TestCase +use PHPUnit\Framework\TestCase; + +class ExampleTest extends TestCase { }