ILIAS  release_9 Revision v9.13-25-g2c18ec4c24f
ilCloseRoundBrackedTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 use ILIAS\Export\ImportHandler\File\Path\Node\ilCloseRoundBracked as ilCloseRoundBrackedFilePathNode;
25 
26 class ilCloseRoundBrackedTest extends TestCase
27 {
28  protected function setUp(): void
29  {
30 
31  }
32 
33  public function testCloseRoundBracked(): void
34  {
35  $node = new ilCloseRoundBrackedFilePathNode();
36  $this->assertEquals(')', $node->toString());
37  $this->assertFalse($node->requiresPathSeparator());
38  }
39 }