ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
OpenedIntegerIntervalTest.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2019 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 
5 namespace ILIAS\Data;
6 
10 
11 require_once("./libs/composer/vendor/autoload.php");
12 
17 {
21  public function testRangeIsAccepted()
22  {
23  $range = new OpenedIntegerInterval(3, 100);
24 
25  $this->assertEquals(3, $range->minimum());
26  $this->assertEquals(100, $range->maximum());
27  }
28 
29  public function testValueIsInRange()
30  {
31  $range = new OpenedIntegerInterval(3, 100);
32 
33  $this->assertTrue($range->spans(50));
34  }
35 
36  public function testMinimumValueIsInRange()
37  {
38  $range = new OpenedIntegerInterval(3, 100);
39 
40  $this->assertTrue($range->spans(3));
41  }
42 
43  public function testMaximumValueIsInRange()
44  {
45  $range = new OpenedIntegerInterval(3, 100);
46 
47  $this->assertTrue($range->spans(3));
48  }
49 
51  {
52  $range = new OpenedIntegerInterval(3, 100);
53 
54  $this->assertFalse($range->spans(1));
55  }
56 
58  {
59  $range = new OpenedIntegerInterval(3, 100);
60 
61  $this->assertFalse($range->spans(101));
62  }
63 
65  {
66  $this->expectNotToPerformAssertions();
67 
68  try {
69  $range = new OpenedIntegerInterval(3, 1);
70  } catch (ConstraintViolationException $exception) {
71  return;
72  }
73  $this->fail();
74  }
75 
79  public function testHexIsAllowForRanges()
80  {
81  $range = new OpenedIntegerInterval(0x3, 0xA);
82 
83  $this->assertSame($range->minimum(), 3);
84  $this->assertSame($range->maximum(), 10);
85  }
86 
90  public function testBinaryIsAllowForRanges()
91  {
92  $range = new OpenedIntegerInterval(0b11, 0b1010);
93 
94  $this->assertSame($range->minimum(), 3);
95  $this->assertSame($range->maximum(), 10);
96  }
97 }