ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
AwarenessSessionRepositoryTest.php
Go to the documentation of this file.
1 <?php
2 
20 
24 class AwarenessSessionRepositoryTest extends TestCase
25 {
26  protected \ILIAS\Awareness\AwarenessSessionRepository $repo;
27 
28  protected function setUp(): void
29  {
30  parent::setUp();
31  $this->repo = new \ILIAS\Awareness\AwarenessSessionRepository();
32  }
33 
34  protected function tearDown(): void
35  {
36  }
37 
38  public function testCount(): void
39  {
40  $repo = $this->repo;
41  $repo->setCount(15);
42  $this->assertEquals(
43  15,
44  $repo->getCount()
45  );
46  }
47 
48  public function testHighlightCount(): void
49  {
50  $repo = $this->repo;
51  $repo->setHighlightCount(6);
52  $this->assertEquals(
53  6,
54  $repo->getHighlightCount()
55  );
56  }
57 
58  public function testLastUpdate(): void
59  {
60  $repo = $this->repo;
61  $repo->setLastUpdate(1234);
62  $this->assertEquals(
63  1234,
64  $repo->getLastUpdate()
65  );
66  }
67 
68  public function testOnlineUsersTS(): void
69  {
70  $repo = $this->repo;
71  $repo->setOnlineUsersTS("2022-01-01 16:00:05");
72  $this->assertEquals(
73  "2022-01-01 16:00:05",
74  $repo->getOnlineUsersTS()
75  );
76  }
77 }
ILIAS Awareness AwarenessSessionRepository $repo