ILIAS  release_7 Revision v7.30-3-g800a261c036
ilServicesTasksSuite.php
Go to the documentation of this file.
1<?php
2
3/* Copyright (c) 1998-2019 ILIAS open source, Extended GPL, see docs/LICENSE */
4
5require_once __DIR__ . '/bootstrap.php';
6
7use PHPUnit\Framework\TestSuite;
8
12class ilServicesTasksSuite extends TestSuite
13{
14 public static function suite()
15 {
16
17 //PHPUnit_Framework_Error_Deprecated::$enabled = FALSE;
18
19 $suite = new self();
20
21 include_once("./Services/Tasks/test/ilDerivedTaskTest.php");
22 $suite->addTestSuite("ilDerivedTaskTest");
23
24 include_once("./Services/Tasks/test/ilDerivedTaskFactoryTest.php");
25 $suite->addTestSuite("ilDerivedTaskFactoryTest");
26
27 include_once("./Services/Tasks/test/ilDerivedTaskCollectorTest.php");
28 $suite->addTestSuite("ilDerivedTaskCollectorTest");
29
30 return $suite;
31 }
32}
$suite
An exception for terminatinating execution or to throw for unit testing.