ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilTestExceptionTest Class Reference

This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V. More...

+ Inheritance diagram for ilTestExceptionTest:
+ Collaboration diagram for ilTestExceptionTest:

Public Member Functions

 testConstruct (array $input, array $output)
 constructDataProvider More...
 
 testException (array $input, array $output)
 exceptionDataProvider More...
 

Static Public Member Functions

static constructDataProvider ()
 
static exceptionDataProvider ()
 
- Static Public Member Functions inherited from ilTestBaseTestCase
static callMethod ($obj, $name, array $args=[])
 

Additional Inherited Members

- Protected Member Functions inherited from ilTestBaseTestCase
 setUp ()
 
 tearDown ()
 
- Protected Attributes inherited from ilTestBaseTestCase
Container $dic = null
 

Detailed Description

This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V.

ILIAS is licensed with the GPL-3.0, see https://www.gnu.org/licenses/gpl-3.0.en.html You should have received a copy of said license along with the source code, too.

If this is not the case or you just want to try ILIAS, you'll find us at: https://www.ilias.de https://github.com/ILIAS-eLearning

Definition at line 19 of file ilTestExceptionTest.php.

Member Function Documentation

◆ constructDataProvider()

static ilTestExceptionTest::constructDataProvider ( )
static

Definition at line 35 of file ilTestExceptionTest.php.

35  : array
36  {
37  return [
38  [['msg' => '', 'code' => -1], ['msg' => ilTestException::class, 'code' => -1]],
39  [['msg' => '', 'code' => 0], ['msg' => ilTestException::class, 'code' => 0]],
40  [['msg' => '', 'code' => 1], ['msg' => ilTestException::class, 'code' => 1]],
41  [['msg' => ''], ['msg' => ilTestException::class, 'code' => 0]],
42  [['msg' => 'test', 'code' => -1], ['msg' => 'test', 'code' => -1]],
43  [['msg' => 'test', 'code' => 0], ['msg' => 'test', 'code' => 0]],
44  [['msg' => 'test', 'code' => 1], ['msg' => 'test', 'code' => 1]],
45  [['msg' => 'test'], ['msg' => 'test', 'code' => 0]]
46  ];
47  }

◆ exceptionDataProvider()

static ilTestExceptionTest::exceptionDataProvider ( )
static

Definition at line 63 of file ilTestExceptionTest.php.

63  : array
64  {
65  return [
66  [['msg' => '', 'code' => -1], ['msg' => ilTestException::class, 'code' => -1]],
67  [['msg' => '', 'code' => 0], ['msg' => ilTestException::class, 'code' => 0]],
68  [['msg' => '', 'code' => 1], ['msg' => ilTestException::class, 'code' => 1]],
69  [['msg' => ''], ['msg' => ilTestException::class, 'code' => 0]],
70  [['msg' => 'test', 'code' => -1], ['msg' => 'test', 'code' => -1]],
71  [['msg' => 'test', 'code' => 0], ['msg' => 'test', 'code' => 0]],
72  [['msg' => 'test', 'code' => 1], ['msg' => 'test', 'code' => 1]],
73  [['msg' => 'test'], ['msg' => 'test', 'code' => 0]]
74  ];
75  }

◆ testConstruct()

ilTestExceptionTest::testConstruct ( array  $input,
array  $output 
)

constructDataProvider

Definition at line 24 of file ilTestExceptionTest.php.

24  : void
25  {
26  $ilTestException = isset($input['code'])
27  ? new ilTestException($input['msg'], $input['code'])
28  : new ilTestException($input['msg'])
29  ;
30  $this->assertInstanceOf(ilTestException::class, $ilTestException);
31  $this->assertEquals($output['msg'], $ilTestException->getMessage());
32  $this->assertEquals($output['code'], $ilTestException->getCode());
33  }
Base Exception for all Exceptions relating to Modules/Test.

◆ testException()

ilTestExceptionTest::testException ( array  $input,
array  $output 
)

exceptionDataProvider

Definition at line 52 of file ilTestExceptionTest.php.

52  : void
53  {
54  $this->expectException(ilTestException::class);
55  $this->expectExceptionMessage($output['msg']);
56  $this->expectExceptionCode($output['code']);
57  throw isset($input['code'])
58  ? new ilTestException($input['msg'], $input['code'])
59  : new ilTestException($input['msg'])
60  ;
61  }
Base Exception for all Exceptions relating to Modules/Test.

The documentation for this class was generated from the following file: