ILIAS  release_9 Revision v9.13-25-g2c18ec4c24f
InterruptiveItemTest Class Reference
+ Inheritance diagram for InterruptiveItemTest:
+ Collaboration diagram for InterruptiveItemTest:

Public Member Functions

 testConstruction ()
 
 testGetId ()
 testConstruction More...
 
- Public Member Functions inherited from ILIAS_UI_TestBase
 setUp ()
 
 tearDown ()
 
 getUIFactory ()
 
 getTemplateFactory ()
 
 getResourceRegistry ()
 
 getLanguage ()
 
 getJavaScriptBinding ()
 
 getRefinery ()
 
 getImagePathResolver ()
 
 getDataFactory ()
 
 getHelpTextRetriever ()
 
 getUploadLimitResolver ()
 
 getDefaultRenderer (JavaScriptBinding $js_binding=null, array $with_stub_renderings=[])
 
 getDecoratedRenderer (Renderer $default)
 
 normalizeHTML (string $html)
 
 assertHTMLEquals (string $expected_html_as_string, string $html_as_string)
 

Additional Inherited Members

- Protected Member Functions inherited from ILIAS_UI_TestBase
 brutallyTrimHTML (string $html)
 A more radical version of normalizeHTML. More...
 
 brutallyTrimSignals (string $html)
 A naive replacement of all il_signal-ids with dots to ease comparisons of rendered output. More...
 

Detailed Description

Definition at line 35 of file InterruptiveItemTest.php.

Member Function Documentation

◆ testConstruction()

InterruptiveItemTest::testConstruction ( )

Definition at line 37 of file InterruptiveItemTest.php.

37  : void
38  {
39  $item = new TestingItem('1');
40  $this->assertInstanceOf(
41  Item::class,
42  $item
43  );
44  }
Dummy-implementation for testing.

◆ testGetId()

InterruptiveItemTest::testGetId ( )

testConstruction

Definition at line 49 of file InterruptiveItemTest.php.

References $id.

49  : void
50  {
51  $id = '1';
52  $item = new TestingItem($id);
53  $this->assertEquals($id, $item->getId());
54  }
Dummy-implementation for testing.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23

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