Skip to content

Commit 10e9217

Browse files
authored
Merge pull request #185 from gabriel-caruso/phpunit
Use PHPUnit\Framework\TestCase instead of PHPUnit_Framework_TestCase
2 parents fe1d3b1 + beaa5b0 commit 10e9217

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: inc/BaseCase.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919
use PHPCR\NodeInterface;
2020
use DateTime;
2121
use PHPUnit_Framework_SkippedTestSuiteError;
22-
use PHPUnit_Framework_TestCase;
22+
use PHPUnit\Framework\TestCase;
2323

2424
/**
2525
* Base class for all phpcr api tests.
2626
*/
27-
abstract class BaseCase extends PHPUnit_Framework_TestCase
27+
abstract class BaseCase extends TestCase
2828
{
2929
/**
3030
* Describes the path to the node for this test, used with writing tests.

0 commit comments

Comments
 (0)