212 $this->assertNull($this->reader->_getGUIClassNameFromClassPath(
"/my/dir/ilSCORM13Player.php"));
213 $this->assertNull($this->reader->_getGUIClassNameFromClassPath(
"\\my\\dir\\ilSCORM13Player.php"));
214 $this->assertNull($this->reader->_getGUIClassNameFromClassPath(
"c:\\my\\dir\\ilSCORM13Player.php"));
215 $this->assertEquals(
"ilscorm13playergui", $this->reader->_getGUIClassNameFromClassPath(
"/my/dir/class.ilSCORM13PlayerGUI.php"));
216 $this->assertEquals(
"ilscorm13playergui", $this->reader->_getGUIClassNameFromClassPath(
"\\my\\dir\\class.ilSCORM13PlayerGUI.php"));
217 $this->assertEquals(
"ilscorm13playergui", $this->reader->_getGUIClassNameFromClassPath(
"c:\\my\\dir\\class.ilSCORM13PlayerGUI.php"));
218 $this->assertEquals(
"ilmytestinggui", $this->reader->_getGUIClassNameFromClassPath(
"/my/dir/class.ilMyTestingGUI.php"));
219 $this->assertEquals(
"ilmytestinggui", $this->reader->_getGUIClassNameFromClassPath(
"\\my\\dir\\class.ilMyTestingGUI.php"));
220 $this->assertEquals(
"ilmytestinggui", $this->reader->_getGUIClassNameFromClassPath(
"c:\\my\\dir\\class.ilMyTestingGUI.php"));
221 $this->assertNull($this->reader->_getGUIClassNameFromClassPath(
"/my/dir/foo.php"));
222 $this->assertNull($this->reader->_getGUIClassNameFromClassPath(
"\\my\\dir\\foo.php"));
223 $this->assertNull($this->reader->_getGUIClassNameFromClassPath(
"c:\\my\\dir\\foo.php"));
224 $this->assertNull($this->reader->_getGUIClassNameFromClassPath(
"/my/dir/picture.png"));
225 $this->assertNull($this->reader->_getGUIClassNameFromClassPath(
"\\my\\dir\\picture.png"));
226 $this->assertNull($this->reader->_getGUIClassNameFromClassPath(
"c:\\my\\dir\\picture.png"));
227 $this->assertNull($this->reader->_getGUIClassNameFromClassPath(
"/my/dir/icon.svg"));
228 $this->assertNull($this->reader->_getGUIClassNameFromClassPath(
"\\my\\dir\\icon.svg"));
229 $this->assertNull($this->reader->_getGUIClassNameFromClassPath(
"c:\\my\\dir\\icon.svg"));
230 $this->assertNull($this->reader->_getGUIClassNameFromClassPath(
"/my/dir/data.json"));
231 $this->assertNull($this->reader->_getGUIClassNameFromClassPath(
"\\my\\dir\\data.json"));
232 $this->assertNull($this->reader->_getGUIClassNameFromClassPath(
"c:\\my\\dir\\data.json"));