ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
ILIAS\LegalDocuments\test\Intercept\NullInterceptTest Class Reference
+ Inheritance diagram for ILIAS\LegalDocuments\test\Intercept\NullInterceptTest:
+ Collaboration diagram for ILIAS\LegalDocuments\test\Intercept\NullInterceptTest:

Public Member Functions

 testConstruct ()
 
 testIntercept ()
 
 testId ()
 
 testTarget ()
 

Detailed Description

Definition at line 27 of file NullInterceptTest.php.

Member Function Documentation

◆ testConstruct()

ILIAS\LegalDocuments\test\Intercept\NullInterceptTest::testConstruct ( )

Definition at line 29 of file NullInterceptTest.php.

29 : void
30 {
31 $this->assertInstanceOf(NullIntercept::class, new NullIntercept());
32 }

◆ testId()

ILIAS\LegalDocuments\test\Intercept\NullInterceptTest::testId ( )

Definition at line 39 of file NullInterceptTest.php.

39 : void
40 {
41 $this->expectException(Exception::class);
42 (new NullIntercept())->id();
43 }

◆ testIntercept()

ILIAS\LegalDocuments\test\Intercept\NullInterceptTest::testIntercept ( )

Definition at line 34 of file NullInterceptTest.php.

34 : void
35 {
36 $this->assertFalse((new NullIntercept())->intercept());
37 }

References ILIAS\LegalDocuments\Intercept\intercept().

+ Here is the call graph for this function:

◆ testTarget()

ILIAS\LegalDocuments\test\Intercept\NullInterceptTest::testTarget ( )

Definition at line 45 of file NullInterceptTest.php.

45 : void
46 {
47 $this->expectException(Exception::class);
48 (new NullIntercept())->target();
49 }

References ILIAS\LegalDocuments\Intercept\target().

+ Here is the call graph for this function:

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