ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
MinimizeButtonTest.php
Go to the documentation of this file.
1<?php
2
19require_once(__DIR__ . "/../../../../../../vendor/composer/vendor/autoload.php");
20require_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}
Provides common functionality for UI tests.
Definition: Base.php:337
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
I Component Button Factory $button_factory