ILIAS  trunk Revision v12.0_alpha-377-g3641b37b9db
ILIAS\Test\Certificate\CertificateTestTemplateDeleteActionTest Class Reference
+ Inheritance diagram for ILIAS\Test\Certificate\CertificateTestTemplateDeleteActionTest:
+ Collaboration diagram for ILIAS\Test\Certificate\CertificateTestTemplateDeleteActionTest:

Public Member Functions

 testDeletionIsDelegatedToWrappedAction ()
 

Detailed Description

Definition at line 25 of file CertificateTestTemplateDeleteActionTest.php.

Member Function Documentation

◆ testDeletionIsDelegatedToWrappedAction()

ILIAS\Test\Certificate\CertificateTestTemplateDeleteActionTest::testDeletionIsDelegatedToWrappedAction ( )

Definition at line 27 of file CertificateTestTemplateDeleteActionTest.php.

27 : void
28 {
29 $delete_action = $this->createMock(\ilCertificateDeleteAction::class);
30 $delete_action
31 ->expects($this->once())
32 ->method('delete');
33
34 $action = new CertificateTestTemplateDeleteAction(
35 $delete_action
36 );
37
38 $action->delete(100, 200);
39 }

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