ILIAS  release_8 Revision v8.24
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
5use PHPUnit\Framework\TestSuite;
6
14class ilServicesCalendarSuite extends TestSuite
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