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

Public Member Functions

 testConstruct ()
 
 testSetGetEmbedded ()
 
 testSetGetLabel ()
 
 testSetGetUri ()
 
 testSetGetX0 ()
 
 testSetGetY ()
 
 testSetGetWidth ()
 
 testSetGetHeight ()
 
 testSetGetEntityref ()
 
 testSetGetContent ()
 

Detailed Description

Definition at line 24 of file ilQTIMatappletTest.php.

Member Function Documentation

◆ testConstruct()

ilQTIMatappletTest::testConstruct ( )

Definition at line 26 of file ilQTIMatappletTest.php.

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

◆ testSetGetContent()

ilQTIMatappletTest::testSetGetContent ( )

Definition at line 87 of file ilQTIMatappletTest.php.

87  : void
88  {
89  $instance = new ilQTIMatapplet();
90  $instance->setContent('Some input.');
91  $this->assertEquals('Some input.', $instance->getContent());
92  }

◆ testSetGetEmbedded()

ilQTIMatappletTest::testSetGetEmbedded ( )

Definition at line 31 of file ilQTIMatappletTest.php.

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

◆ testSetGetEntityref()

ilQTIMatappletTest::testSetGetEntityref ( )

Definition at line 80 of file ilQTIMatappletTest.php.

80  : void
81  {
82  $instance = new ilQTIMatapplet();
83  $instance->setEntityref('Some input.');
84  $this->assertEquals('Some input.', $instance->getEntityref());
85  }

◆ testSetGetHeight()

ilQTIMatappletTest::testSetGetHeight ( )

Definition at line 73 of file ilQTIMatappletTest.php.

73  : void
74  {
75  $instance = new ilQTIMatapplet();
76  $instance->setHeight('Some input.');
77  $this->assertEquals('Some input.', $instance->getHeight());
78  }

◆ testSetGetLabel()

ilQTIMatappletTest::testSetGetLabel ( )

Definition at line 38 of file ilQTIMatappletTest.php.

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

◆ testSetGetUri()

ilQTIMatappletTest::testSetGetUri ( )

Definition at line 45 of file ilQTIMatappletTest.php.

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

◆ testSetGetWidth()

ilQTIMatappletTest::testSetGetWidth ( )

Definition at line 66 of file ilQTIMatappletTest.php.

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

◆ testSetGetX0()

ilQTIMatappletTest::testSetGetX0 ( )

Definition at line 52 of file ilQTIMatappletTest.php.

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

◆ testSetGetY()

ilQTIMatappletTest::testSetGetY ( )

Definition at line 59 of file ilQTIMatappletTest.php.

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

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