ILIAS  trunk Revision v11.0_alpha-1723-g8e69f309bab
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilCloseRoundBrackedTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
23 use ILIAS\Export\ImportHandler\Path\Node\CloseRoundBracked 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 }