ILIAS  release_9 Revision v9.13-25-g2c18ec4c24f
ilServicesSamlSuite.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
28 {
29  public static function suite(): self
30  {
31  $suite = new self();
32 
33  require_once __DIR__ . '/ilSamlMappedUserAttributeValueParserTest.php';
34  $suite->addTestSuite(ilSamlMappedUserAttributeValueParserTest::class);
35 
36  require_once __DIR__ . '/ilSamlIdpXmlMetadataParserTest.php';
37  $suite->addTestSuite(ilSamlIdpXmlMetadataParserTest::class);
38 
39  return $suite;
40  }
41 }
Class ilServicesSamlTestSuite.