1<?php
2/* Copyright (c) 1998-2017 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4require_once 'libs/composer/vendor/autoload.php';
5
6/**
7 * Class ilServicesSamlTestSuite
8 */
9class ilServicesSamlTestSuite extends \PHPUnit_Framework_TestSuite
10{
11    /**
12     * @return self
13     */
14    public static function suite()
15    {
16        $suite = new self();
17
18        require_once 'Services/Saml/test/ilSamlMappedUserAttributeValueParserTest.php';
19        $suite->addTestSuite(ilSamlMappedUserAttributeValueParserTest::class);
20
21        return $suite;
22    }
23}
24