ILIAS  trunk Revision v11.0_alpha-1811-gd2d5443e411
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator 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 28 of file FormGUITest.php.

Member Function Documentation

◆ setUp()

FormGUITest::setUp ( )
protected

Definition at line 32 of file FormGUITest.php.

32  : void
33  {
34  parent::setUp();
35  }

◆ tearDown()

FormGUITest::tearDown ( )
protected

Definition at line 37 of file FormGUITest.php.

37  : void
38  {
39  }

◆ testFormGUIProperties()

FormGUITest::testFormGUIProperties ( )

Test get HTML return an array.

Definition at line 44 of file FormGUITest.php.

44  : void
45  {
46  $form_gui = new ilFormGUI();
47 
48  $form_gui->setId("myid");
49  $this->assertEquals(
50  "myid",
51  $form_gui->getId()
52  );
53 
54  $form_gui->setCloseTag(true);
55  $this->assertEquals(
56  true,
57  $form_gui->getCloseTag()
58  );
59 
60  $form_gui->setName("myname");
61  $this->assertEquals(
62  "myname",
63  $form_gui->getName()
64  );
65  }
This class represents a form user interface.

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