ILIAS  release_8 Revision v8.19-1-g4e8f2f9140c
All Data Structures Namespaces Files Functions Variables Modules Pages
YUITest.php
Go to the documentation of this file.
1 <?php
2 
20 
26 class YUITest extends TestCase
27 {
28  protected function tearDown(): void
29  {
30  }
31 
35  public function testPath(): void
36  {
37  $path = ilYuiUtil::getLocalPath("test.js");
38  $this->assertEquals(
39  "./libs/bower/bower_components/yui2/build/test.js",
40  $path
41  );
42  }
43 }
static getLocalPath(string $a_name="")
Get local path of a YUI js file.
tearDown()
Definition: YUITest.php:28
$path
Definition: ltiservices.php:32
Test session repository.
Definition: YUITest.php:26
testPath()
Test sort.
Definition: YUITest.php:35