<?php /** * Base FileRenamer UnitTest * * @link https://github.com/picamator/FileRenamer * @license http://opensource.org/licenses/BSD-3-Clause New BSD License */
namespace FileRenamer;
class BaseTest extends \PHPUnit_Framework_TestCase { /** * Path to the data folder * * @var string */ protected $data_path = './data/'; /** * Template methods runs once for each test method * of the test case class */ protected function setUp() { } }
|