php-vfs/test/src/UnitTestCase.php

24 lines
504 B
PHP
Raw Normal View History

2014-07-06 16:32:53 +00:00
<?php
/*
* This file is part of VFS
*
* Copyright (c) 2015 Andrew Lawson <http://adlawson.com>
2014-07-06 16:32:53 +00:00
*
* 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;
}