ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
NotificationTest.php
Go to the documentation of this file.
1 <?php
2 
20 
27 {
28  protected function setGlobalVariable(string $name, $value): void
29  {
30  global $DIC;
31 
32  $GLOBALS[$name] = $value;
33 
34  unset($DIC[$name]);
35  $DIC[$name] = static function (\ILIAS\DI\Container $c) use ($value) {
36  return $value;
37  };
38  }
39 
40  protected function setUp(): void
41  {
42  parent::setUp();
43  $dic = new ILIAS\DI\Container();
44  $GLOBALS['DIC'] = $dic;
45  }
46 
47  protected function tearDown(): void
48  {
49  }
50 
51  protected function initDBMock(): \PHPUnit\Framework\MockObject\MockObject
52  {
53  $db_mock = $this->createMock(ilDBInterface::class);
54  $this->setGlobalVariable(
55  "ilDB",
56  $db_mock
57  );
58  return $db_mock;
59  }
60 
61  public function testRemoveForUser(): void
62  {
63  $db_mock = $this->initDBMock();
64  $db_mock->expects($this->once())
65  ->method('query')
66  ->with($this->stringContains('DELETE FROM notification WHERE user_id ='));
67 
69  }
70 }
$c
Definition: deliver.php:25
Customizing of pimple-DIC for ILIAS.
Definition: Container.php:35
$GLOBALS["DIC"]
Definition: wac.php:53
Test clipboard repository.
static removeForUser(int $user_id)
Remove all notifications for given user.
global $DIC
Definition: shib_login.php:22
setGlobalVariable(string $name, $value)
$dic
Definition: result.php:31