ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
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 23 of file ilQTIPresentationTest.php.

Member Function Documentation

◆ testConstruct()

ilQTIPresentationTest::testConstruct ( )

Definition at line 25 of file ilQTIPresentationTest.php.

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

◆ testSetGetHeight()

ilQTIPresentationTest::testSetGetHeight ( )

Definition at line 65 of file ilQTIPresentationTest.php.

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

◆ testSetGetLabel()

ilQTIPresentationTest::testSetGetLabel ( )

Definition at line 30 of file ilQTIPresentationTest.php.

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

◆ testSetGetWidth()

ilQTIPresentationTest::testSetGetWidth ( )

Definition at line 58 of file ilQTIPresentationTest.php.

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

◆ testSetGetX0()

ilQTIPresentationTest::testSetGetX0 ( )

Definition at line 44 of file ilQTIPresentationTest.php.

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

◆ testSetGetXmllang()

ilQTIPresentationTest::testSetGetXmllang ( )

Definition at line 37 of file ilQTIPresentationTest.php.

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

◆ testSetGetY0()

ilQTIPresentationTest::testSetGetY0 ( )

Definition at line 51 of file ilQTIPresentationTest.php.

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

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