You are here

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

Unit

Code

public function testAutoloader_construct_default() {
  $expDir = realpath(__DIR__ . '/../../src/Flow') . '/..';
  $autoloader = new \Flow\Autoloader();
  $this
    ->assertSame($expDir, $autoloader
    ->getDir());
}