ILIAS  release_8 Revision v8.23
ilLTIToolConsumerTest.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
22 
27 class ilLTIToolConsumerTest extends TestCase
28 {
29  public function testTitle(): void
30  {
31  $ltiToolConsumer = new ilLTIPlatform();
32  $testString = str_shuffle(uniqid('abcdefgh'));
33  $ltiToolConsumer->setTitle($testString);
34 
35  $this->assertEquals($testString, $ltiToolConsumer->getTitle());
36  }
37 }
LTI provider for LTI launch.
Class ilLTIToolConsumerTest.