ILIAS  trunk Revision v11.0_alpha-2645-g16283d3b3f8
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 }