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