ILIAS  trunk Revision v11.0_alpha-1723-g8e69f309bab
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
PathsTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
27 
28 class PathsTest extends TestCase
29 {
30  protected function getPaths(): Paths
31  {
32  return new Paths(new NullFactory());
33  }
34 
35  public function testCustom(): void
36  {
37  $paths = $this->getPaths();
38 
39  $this->assertInstanceOf(
40  BuilderInterface::class,
41  $paths->custom()
42  );
43  }
44 }