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