ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilLTIToolConsumerTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
28 {
29  public function testTitle(): void
30  {
31  $this->markTestSkipped('Test skipped while integrating the new dependencies in LTI components.');
32 
33  $ltiToolConsumer = new ilLTIPlatform(
34  $this->createMock(ilLTIDataConnector::class)
35  );
36  $testString = str_shuffle(uniqid('abcdefgh'));
37  $ltiToolConsumer->setTitle($testString);
38 
39  $this->assertEquals($testString, $ltiToolConsumer->getTitle());
40  }
41 }
LTI provider for LTI launch.
Class ilLTIToolConsumerTest.