ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilBuddySystemRequestedStateRelationTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
26 {
28  {
30  }
31 
32  public function testIsUnlinked(): void
33  {
34  $this->assertFalse($this->relation->isUnlinked());
35  }
36 
37  public function testIsLinked(): void
38  {
39  $this->assertFalse($this->relation->isLinked());
40  }
41 
42  public function testIsRequested(): void
43  {
44  $this->assertTrue($this->relation->isRequested());
45  }
46 
47  public function testIsIgnored(): void
48  {
49  $this->assertFalse($this->relation->isIgnored());
50  }
51 
52  public function testCanBeUnlinked(): void
53  {
54  $this->relation->unlink();
55  $this->assertTrue($this->relation->isUnlinked());
56  $this->assertTrue($this->relation->wasRequested());
57  }
58 
59  public function testCanBeLinked(): void
60  {
61  $this->relation->link();
62  $this->assertTrue($this->relation->isLinked());
63  $this->assertTrue($this->relation->wasRequested());
64  }
65 
66  public function testCanBeRequested(): void
67  {
68  $this->expectException(ilBuddySystemRelationStateException::class);
69  $this->relation->request();
70  }
71 
72  public function testCanBeIgnored(): void
73  {
74  $this->relation->ignore();
75  $this->assertTrue($this->relation->isIgnored());
76  }
77 
78  public function testPossibleTargetStates(): void
79  {
80  $this->assertTrue(
81  $this->relation->getState()
82  ->getPossibleTargetStates()
87  ]))
88  );
89  }
90 }
Class ilBuddySystemUnlinkedRelationState.
Class ilBuddySystemRequestedStateRelationTest.
Class ilBuddySystemRelationStateCollection A collection of relation states.
Class ilBuddySystemBaseStateTest.
Interface ilBuddySystemRelationState.