ILIAS  trunk Revision v11.0_alpha-2638-g80c1d007f79
ilBuddySystemRelationRepositoryTestCase.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 {
24  {
25  $db = $this->createMock(ilDBInterface::class);
26  $db->expects($this->exactly(2))
27  ->method('manipulateF')
28  ->with($this->stringContains('DELETE FROM'));
29 
30  $repo = new ilBuddySystemRelationRepository(4711, $db);
31  $repo->destroy();
32  }
33 }
Class ilBuddySystemRelationRepository.