ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
MinimizeButtonTest.php
Go to the documentation of this file.
1 <?php
2 
19 require_once(__DIR__ . "/../../../../../../vendor/composer/vendor/autoload.php");
20 require_once(__DIR__ . "/../../Base.php");
21 
23 
28 {
29  protected I\Component\Button\Factory $button_factory;
30 
31  public function setUp(): void
32  {
33  $this->button_factory = new I\Component\Button\Factory();
34  }
35 
36  public function testImplementsFactoryInterface(): void
37  {
38  $this->assertInstanceOf(
39  "ILIAS\\UI\\Component\\Button\\Minimize",
40  $this->button_factory->minimize()
41  );
42  }
43 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
I Component Button Factory $button_factory