From eab02103d62382fba71d2cee4f80130f67a41061 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Pr=C3=A9vot?= Date: Sun, 3 Dec 2017 16:31:52 -1000 Subject: [PATCH] Move to namespaced phpunit versions Debian-Bug: https://bugs.debian.org/882892 --- tests/fxslcallbackTest.php | 4 +++- tests/fxsltprocessorTest.php | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/tests/fxslcallbackTest.php b/tests/fxslcallbackTest.php index 9e27596..1151667 100644 --- a/tests/fxslcallbackTest.php +++ b/tests/fxslcallbackTest.php @@ -2,7 +2,9 @@ namespace TheSeer\fXSL; -class fXSLCallbackTest extends \PHPUnit_Framework_TestCase { +use PHPUnit\Framework\TestCase; + +class fXSLCallbackTest extends TestCase { public function testSimple() { $object = new \stdClass(); diff --git a/tests/fxsltprocessorTest.php b/tests/fxsltprocessorTest.php index 7de948c..cc08b4d 100644 --- a/tests/fxsltprocessorTest.php +++ b/tests/fxsltprocessorTest.php @@ -2,7 +2,9 @@ namespace TheSeer\fXSL; -class fxsltprocessorTest extends \PHPUnit_Framework_TestCase { +use PHPUnit\Framework\TestCase; + +class fxsltprocessorTest extends TestCase { public function testLoadingStylesheetFromFile() { $dom = new \DOMDocument();