public function AutoloadTest::testAutoloader_construct_default in One Click Upload 7.2
* @covers ::__construct * @covers ::getDir
File
- flowphp/
test/ Unit/ AutoloadTest.php, line 19
Class
- AutoloadTest
- Autoload unit tests
Namespace
UnitCode
public function testAutoloader_construct_default() {
$expDir = realpath(__DIR__ . '/../../src/Flow') . '/..';
$autoloader = new \Flow\Autoloader();
$this
->assertSame($expDir, $autoloader
->getDir());
}