ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
MinimizeButtonTest.php
Go to the documentation of this file.
1 <?php
2 
19 require_once(__DIR__ . "/../../../../libs/composer/vendor/autoload.php");
20 require_once(__DIR__ . "/../../Base.php");
21 
23 
28 {
29  public function setUp(): void
30  {
31  $this->button_factory = new I\Component\Button\Factory();
32  }
33 
34  public function test_implements_factory_interface(): void
35  {
36  $this->assertInstanceOf(
37  "ILIAS\\UI\\Component\\Button\\Minimize",
38  $this->button_factory->minimize()
39  );
40  }
41 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Provides common functionality for UI tests.
Definition: Base.php:298
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...