ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
ilServicesPDFGenerationSuite.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 1998-2014 ILIAS open source, Extended GPL, see docs/LICENSE */
3
5
6require_once 'libs/composer/vendor/autoload.php';
7
12class ilServicesPDFGenerationSuite extends TestSuite
13{
17 public static function suite()
18 {
19 $suite = new self();
20
21 require_once __DIR__ . '/ilPdfGeneratorConstantsTest.php';
22 $suite->addTestSuite('ilPdfGeneratorConstantsTest');
23
24 require_once __DIR__ . '/ilPhantomJSRendererTest.php';
25 $suite->addTestSuite('ilPhantomJSRendererTest');
26
27 require_once __DIR__ . '/ilPhantomJSRendererUiTest.php';
28 $suite->addTestSuite('ilPhantomJSRendererUiTest');
29
30 return $suite;
31 }
32}
$suite
An exception for terminatinating execution or to throw for unit testing.