Definition at line 21 of file ilComponentInfoTest.php.
◆ setUp()
ilComponentInfoTest::setUp |
( |
| ) |
|
|
protected |
Definition at line 23 of file ilComponentInfoTest.php.
49 $slots[] = $this->pluginslot1;
50 $slots[] = $this->pluginslot2;
Simple value class for basic information about a pluginslot.
Simple value class for basic information about a component.
◆ testGetPluginSlotById()
ilComponentInfoTest::testGetPluginSlotById |
( |
| ) |
|
Definition at line 89 of file ilComponentInfoTest.php.
92 $this->assertEquals(
new ilPluginSlotInfo($this->component,
"slt1",
"Slot1", $plugins), $this->component->getPluginSlotById(
"slt1"));
93 $this->assertEquals(
new ilPluginSlotInfo($this->component,
"slt2",
"Slot2", $plugins), $this->component->getPluginSlotById(
"slt2"));
Simple value class for basic information about a pluginslot.
◆ testGetPluginSlotByName()
ilComponentInfoTest::testGetPluginSlotByName |
( |
| ) |
|
Definition at line 115 of file ilComponentInfoTest.php.
118 $this->assertEquals(
new ilPluginSlotInfo($this->component,
"slt1",
"Slot1", $plugins), $this->component->getPluginSlotByName(
"Slot1"));
119 $this->assertEquals(
new ilPluginSlotInfo($this->component,
"slt2",
"Slot2", $plugins), $this->component->getPluginSlotByName(
"Slot2"));
Simple value class for basic information about a pluginslot.
◆ testGetPluginsSlots()
ilComponentInfoTest::testGetPluginsSlots |
( |
| ) |
|
Definition at line 73 of file ilComponentInfoTest.php.
75 $pluginslots = iterator_to_array($this->component->getPluginSlots());
77 $this->assertCount(2, $pluginslots);
78 $this->assertEquals(
new ilPluginSlotInfo($this->component,
"slt1",
"Slot1", $plugins), $pluginslots[
"slt1"]);
79 $this->assertEquals(
new ilPluginSlotInfo($this->component,
"slt2",
"Slot2", $plugins), $pluginslots[
"slt2"]);
Simple value class for basic information about a pluginslot.
◆ testGetter()
ilComponentInfoTest::testGetter |
( |
| ) |
|
Definition at line 53 of file ilComponentInfoTest.php.
55 $this->assertEquals(
"mod1", $this->component->getId());
56 $this->assertEquals(
"Modules", $this->component->getType());
57 $this->assertEquals(
"Module1", $this->component->getName());
58 $this->assertEquals(
"Modules/Module1", $this->component->getQualifiedName());
◆ testGetUnknownPluginSlot()
ilComponentInfoTest::testGetUnknownPluginSlot |
( |
| ) |
|
Definition at line 102 of file ilComponentInfoTest.php.
104 $this->expectException(\InvalidArgumentException::class);
105 $this->component->getPluginSlotById(
"slt3");
◆ testGetUnknownPluginSlotById()
ilComponentInfoTest::testGetUnknownPluginSlotById |
( |
| ) |
|
Definition at line 96 of file ilComponentInfoTest.php.
98 $this->expectException(\InvalidArgumentException::class);
99 $this->component->getPluginSlotById(
"slt3");
◆ testGetUnknownPluginSlotByName()
ilComponentInfoTest::testGetUnknownPluginSlotByName |
( |
| ) |
|
Definition at line 122 of file ilComponentInfoTest.php.
124 $this->expectException(\InvalidArgumentException::class);
125 $this->component->getPluginSlotById(
"Slot3");
◆ testHasPluginSlotId()
ilComponentInfoTest::testHasPluginSlotId |
( |
| ) |
|
Definition at line 82 of file ilComponentInfoTest.php.
84 $this->assertTrue($this->component->hasPluginSlotId(
"slt1"));
85 $this->assertTrue($this->component->hasPluginSlotId(
"slt2"));
86 $this->assertFalse($this->component->hasPluginSlotId(
"slt3"));
◆ testHasPluginSlotName()
ilComponentInfoTest::testHasPluginSlotName |
( |
| ) |
|
Definition at line 108 of file ilComponentInfoTest.php.
110 $this->assertTrue($this->component->hasPluginSlotName(
"Slot1"));
111 $this->assertTrue($this->component->hasPluginSlotName(
"Slot2"));
112 $this->assertFalse($this->component->hasPluginSlotName(
"Slot3"));
◆ testInvalidTypeThrowsException()
ilComponentInfoTest::testInvalidTypeThrowsException |
( |
| ) |
|
Definition at line 61 of file ilComponentInfoTest.php.
63 $this->expectException(\InvalidArgumentException::class);
Simple value class for basic information about a component.
The documentation for this class was generated from the following file: