ILIAS  release_8 Revision v8.24
ilBuddySystemRelationRepositoryTest.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
26{
28 {
29 $db = $this->createMock(ilDBInterface::class);
30 $db->expects($this->exactly(2))
31 ->method('manipulateF')
32 ->with($this->stringContains('DELETE FROM'));
33
34 $repo = new ilBuddySystemRelationRepository(4711, $db);
35 $repo->destroy();
36 }
37}
Class ilBuddySystemRelationRepositoryTest.
Class ilBuddySystemRelationRepository.