ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
BadgeManagementSessionRepositoryTest.php
Go to the documentation of this file.
1 <?php
2 
20 
25 {
27 
28  protected function setUp(): void
29  {
30  parent::setUp();
31  $this->repo = new ilBadgeManagementSessionRepository();
32  $this->repo->clear();
33  }
34 
35  protected function tearDown(): void
36  {
37  }
38 
39  public function testClear(): void
40  {
41  $repo = $this->repo;
42  $repo->setBadgeIds([1,3,4]);
43  $repo->clear();
44  $this->assertEquals(
45  [],
46  $repo->getBadgeIds()
47  );
48  }
49 
50  public function testBadgeIds(): void
51  {
52  $repo = $this->repo;
53  $repo->setBadgeIds([1,6,7]);
54  $this->assertEquals(
55  [1,6,7],
56  $repo->getBadgeIds()
57  );
58  }
59 }