Skip to content
This repository was archived by the owner on Dec 29, 2019. It is now read-only.

Move to namespaced phpunit versions #6

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion tests/fxslcallbackTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
4 changes: 3 additions & 1 deletion tests/fxsltprocessorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down