ILIAS  trunk Revision v12.0_alpha-377-g3641b37b9db
CertificateTestTemplateDeleteActionTest.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
23use PHPUnit\Framework\TestCase;
24
26{
28 {
29 $delete_action = $this->createMock(\ilCertificateDeleteAction::class);
30 $delete_action
31 ->expects($this->once())
32 ->method('delete');
33
35 $delete_action
36 );
37
38 $action->delete(100, 200);
39 }
40}