ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
ilServicesCalendarSuite.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 1998-2021 ILIAS open source, Extended GPL, see docs/LICENSE */
4 
6 
15 {
16  public static function suite(): self
17  {
18  $suite = new ilServicesCalendarSuite();
19  include_once './Services/Calendar/test/class.ilCalendarRecurrenceCalculationTest.php';
20  $suite->addTestSuite(ilCalendarRecurrenceCalculationTest::class);
21  return $suite;
22  }
23 }
class ServicesCalendarSuite