ILIAS  trunk Revision v11.0_alpha-2645-g16283d3b3f8
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.

References ILIAS\LegalDocuments\Intercept\intercept().

34  : void
35  {
36  $this->assertFalse((new NullIntercept())->intercept());
37  }
+ Here is the call graph for this function:

◆ testTarget()

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

Definition at line 45 of file NullInterceptTest.php.

References ILIAS\LegalDocuments\Intercept\target().

45  : void
46  {
47  $this->expectException(Exception::class);
48  (new NullIntercept())->target();
49  }
+ Here is the call graph for this function:

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