ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
ilQTIPresentationTest Class Reference
+ Inheritance diagram for ilQTIPresentationTest:
+ Collaboration diagram for ilQTIPresentationTest:

Public Member Functions

 testConstruct ()
 
 testSetGetLabel ()
 
 testSetGetXmllang ()
 
 testSetGetX0 ()
 
 testSetGetY0 ()
 
 testSetGetWidth ()
 
 testSetGetHeight ()
 

Detailed Description

Definition at line 24 of file ilQTIPresentationTest.php.

Member Function Documentation

◆ testConstruct()

ilQTIPresentationTest::testConstruct ( )

Definition at line 26 of file ilQTIPresentationTest.php.

26  : void
27  {
28  $this->assertInstanceOf(ilQTIPresentation::class, new ilQTIPresentation());
29  }

◆ testSetGetHeight()

ilQTIPresentationTest::testSetGetHeight ( )

Definition at line 66 of file ilQTIPresentationTest.php.

66  : void
67  {
68  $instance = new ilQTIPresentation();
69  $instance->setHeight('Some input.');
70  $this->assertEquals('Some input.', $instance->getHeight());
71  }

◆ testSetGetLabel()

ilQTIPresentationTest::testSetGetLabel ( )

Definition at line 31 of file ilQTIPresentationTest.php.

31  : void
32  {
33  $instance = new ilQTIPresentation();
34  $instance->setLabel('Some input.');
35  $this->assertEquals('Some input.', $instance->getLabel());
36  }

◆ testSetGetWidth()

ilQTIPresentationTest::testSetGetWidth ( )

Definition at line 59 of file ilQTIPresentationTest.php.

59  : void
60  {
61  $instance = new ilQTIPresentation();
62  $instance->setWidth('Some input.');
63  $this->assertEquals('Some input.', $instance->getWidth());
64  }

◆ testSetGetX0()

ilQTIPresentationTest::testSetGetX0 ( )

Definition at line 45 of file ilQTIPresentationTest.php.

45  : void
46  {
47  $instance = new ilQTIPresentation();
48  $instance->setX0('Some input.');
49  $this->assertEquals('Some input.', $instance->getX0());
50  }

◆ testSetGetXmllang()

ilQTIPresentationTest::testSetGetXmllang ( )

Definition at line 38 of file ilQTIPresentationTest.php.

38  : void
39  {
40  $instance = new ilQTIPresentation();
41  $instance->setXmllang('Some input.');
42  $this->assertEquals('Some input.', $instance->getXmllang());
43  }

◆ testSetGetY0()

ilQTIPresentationTest::testSetGetY0 ( )

Definition at line 52 of file ilQTIPresentationTest.php.

52  : void
53  {
54  $instance = new ilQTIPresentation();
55  $instance->setY0('Some input.');
56  $this->assertEquals('Some input.', $instance->getY0());
57  }

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