ILIAS  trunk Revision v11.0_alpha-1862-g4e205cb56d4
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator 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 23 of file ilQTIMatappletTest.php.

Member Function Documentation

◆ testConstruct()

ilQTIMatappletTest::testConstruct ( )

Definition at line 25 of file ilQTIMatappletTest.php.

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

◆ testSetGetContent()

ilQTIMatappletTest::testSetGetContent ( )

Definition at line 86 of file ilQTIMatappletTest.php.

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

◆ testSetGetEmbedded()

ilQTIMatappletTest::testSetGetEmbedded ( )

Definition at line 30 of file ilQTIMatappletTest.php.

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

◆ testSetGetEntityref()

ilQTIMatappletTest::testSetGetEntityref ( )

Definition at line 79 of file ilQTIMatappletTest.php.

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

◆ testSetGetHeight()

ilQTIMatappletTest::testSetGetHeight ( )

Definition at line 72 of file ilQTIMatappletTest.php.

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

◆ testSetGetLabel()

ilQTIMatappletTest::testSetGetLabel ( )

Definition at line 37 of file ilQTIMatappletTest.php.

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

◆ testSetGetUri()

ilQTIMatappletTest::testSetGetUri ( )

Definition at line 44 of file ilQTIMatappletTest.php.

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

◆ testSetGetWidth()

ilQTIMatappletTest::testSetGetWidth ( )

Definition at line 65 of file ilQTIMatappletTest.php.

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

◆ testSetGetX0()

ilQTIMatappletTest::testSetGetX0 ( )

Definition at line 51 of file ilQTIMatappletTest.php.

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

◆ testSetGetY()

ilQTIMatappletTest::testSetGetY ( )

Definition at line 58 of file ilQTIMatappletTest.php.

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

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