mirror of
https://github.com/adlawson/php-vfs.git
synced 2025-02-04 11:38:25 +00:00
24 lines
504 B
PHP
24 lines
504 B
PHP
|
<?php
|
||
|
/*
|
||
|
* This file is part of VFS
|
||
|
*
|
||
|
* Copyright (c) 2014 Andrew Lawson <http://adlawson.com>
|
||
|
*
|
||
|
* For the full copyright and license information, please view the LICENSE
|
||
|
* file that was distributed with this source code.
|
||
|
*/
|
||
|
namespace Vfs\Test;
|
||
|
|
||
|
use PHPUnit_Framework_TestCase as TestCase;
|
||
|
|
||
|
class UnitTestCase extends TestCase
|
||
|
{
|
||
|
protected $factory;
|
||
|
protected $fs;
|
||
|
protected $logger;
|
||
|
protected $registry;
|
||
|
protected $scheme;
|
||
|
protected $walker;
|
||
|
protected $wrapperClass;
|
||
|
}
|