ILIAS  release_8 Revision v8.23
ilServicesStyleSuite.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 2016 Timon Amstutz <timon.amstutz@ilub.unibe.ch> Extended GPL, see docs/LICENSE */
4 
6 
14 {
15  public static function suite()
16  {
17  $suite = new ilServicesStyleSuite();
18 
19  // add each test class of the component
20  include_once("./Services/Style/System/test/ilServicesStyleSystemSuite.php");
21  include_once("./Services/Style/Content/test/ilServicesStyleContentSuite.php");
22  $suite->addTestSuite("ilServicesStyleSystemSuite");
23  $suite->addTestSuite("ilServicesStyleContentSuite");
24  return $suite;
25  }
26 }