Skip to content
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
3 changes: 2 additions & 1 deletion tests/directoryscanner.test.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@

namespace TheSeer\DirectoryScanner\Tests {

use PHPUnit\Framework\TestCase;
use TheSeer\DirectoryScanner\DirectoryScanner;

/**
Expand All @@ -45,7 +46,7 @@
* @author Arne Blankerts <arne@blankerts.de>
* @copyright Arne Blankerts <arne@blankerts.de>, All rights reserved.
*/
class DirectoryScannerTest extends \PHPUnit_Framework_TestCase {
class DirectoryScannerTest extends TestCase {

/**
* Test if enabling following symbolic links works.
Expand Down
4 changes: 3 additions & 1 deletion tests/phpfilter.test.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,15 @@

namespace TheSeer\DirectoryScanner\Tests {

use PHPUnit\Framework\TestCase;

/**
* Unit tests for PHPFilter iterator class
*
* @author Arne Blankerts <arne@blankerts.de>
* @copyright Arne Blankerts <arne@blankerts.de>, All rights reserved.
*/
class PHPFilterIteratorTest extends \PHPUnit_Framework_TestCase {
class PHPFilterIteratorTest extends TestCase {

public function testNonPHPFile() {
$list = new \ArrayIterator(
Expand Down