/** * testDir existing directory */ public function testDirectoryExist() { $correctPath =& $this->path; $this->assertTrue(DirectoryHelper::exist($correctPath)); $this->assertFalse(DirectoryHelper::exist('not\\correct\\path')); }