ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
InterestedUserFieldComponentTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\User\Tests;
22 
24 
30 {
31  public function testInterestedUserFieldComponent(): void
32  {
33  $interestedUserFieldComponent = new InterestedUserFieldComponent(
34  "My Component Name",
35  "My description"
36  );
37 
38  $this->assertEquals("My Component Name", $interestedUserFieldComponent->getComponentName());
39  $this->assertEquals("My description", $interestedUserFieldComponent->getDescription());
40  }
41 }