ILIAS  release_8 Revision v8.19-1-g4e8f2f9140c
All Data Structures Namespaces Files Functions Variables Modules Pages
FormGUITest Class Reference

Test clipboard repository. More...

+ Inheritance diagram for FormGUITest:
+ Collaboration diagram for FormGUITest:

Public Member Functions

 testFormGUIProperties ()
 Test get HTML return an array. More...
 

Protected Member Functions

 setUp ()
 
 tearDown ()
 

Detailed Description

Test clipboard repository.

Author
Alexander Killing killi.nosp@m.ng@l.nosp@m.eifos.nosp@m..de

Definition at line 12 of file FormGUITest.php.

Member Function Documentation

◆ setUp()

FormGUITest::setUp ( )
protected

Definition at line 16 of file FormGUITest.php.

16  : void
17  {
18  parent::setUp();
19  }

◆ tearDown()

FormGUITest::tearDown ( )
protected

Definition at line 21 of file FormGUITest.php.

21  : void
22  {
23  }

◆ testFormGUIProperties()

FormGUITest::testFormGUIProperties ( )

Test get HTML return an array.

Definition at line 28 of file FormGUITest.php.

28  : void
29  {
30  $form_gui = new ilFormGUI();
31 
32  $form_gui->setId("myid");
33  $this->assertEquals(
34  "myid",
35  $form_gui->getId()
36  );
37 
38  $form_gui->setCloseTag(true);
39  $this->assertEquals(
40  true,
41  $form_gui->getCloseTag()
42  );
43 
44  $form_gui->setName("myname");
45  $this->assertEquals(
46  "myname",
47  $form_gui->getName()
48  );
49  }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...

The documentation for this class was generated from the following file: