ILIAS  release_8 Revision v8.25
ilModulesGroupSuite.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4
5/* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
6
7use PHPUnit\Framework\TestSuite;
8
9class ilModulesGroupSuite extends TestSuite
10{
11 public static function suite()
12 {
13 $suite = new ilModulesGroupSuite();
14 include_once("./Modules/Group/test/ilGroupEventHandlerTest.php");
15 $suite->addTestSuite(ilGroupEventHandlerTest::class);
16 return $suite;
17 }
18}