3 declare(strict_types=1);
22 require_once(
'./libs/composer/vendor/autoload.php');
31 protected function setUp(): void
33 $this->f =
new Data\Factory();
38 $c_dimension = $this->f->dimension()->cardinal();
39 $dimensions = [
"A dimension" => $c_dimension,
"Another dimension" => $c_dimension];
46 $c_dimension = $this->f->dimension()->cardinal();
47 $r_dimension = $this->f->dimension()->range($c_dimension);
49 "First dimension" => $c_dimension,
50 "Second dimension" => $c_dimension,
51 "Third dimension" => $r_dimension
61 $dataset = $this->f->dataset($dimensions);
62 $this->assertEquals($dimensions, $dataset->getDimensions());
64 $this->assertFalse(
"This should not happen.");
71 $dimension =
"Dimension";
72 $dataset = $this->f->dataset([
"A dimension" => $dimension]);
73 $this->assertFalse(
"This should not happen.");
75 $this->assertTrue(
true);
82 $dimension = $this->f->dimension()->cardinal();
83 $dataset = $this->f->dataset([1 => $dimension]);
84 $this->assertFalse(
"This should not happen.");
86 $this->assertTrue(
true);
93 $points = [
"A dimension" => 1,
"Another dimension" => 2];
94 $dataset = $dataset->withPoint(
98 $this->assertEquals([
"Item" => $points], $dataset->getPoints());
105 $points = [
"A dimension" => 1,
"Second dimension" => 2];
106 $dataset = $dataset->withPoint(
110 $this->assertFalse(
"This should not happen.");
111 }
catch (\ArgumentCountError
$e) {
112 $this->assertTrue(
true);
119 $info = [
"A dimension" =>
"An information",
"Another dimension" => null];
120 $dataset = $dataset->withAlternativeInformation(
124 $this->assertEquals([
"Item" => $info], $dataset->getAlternativeInformation());
131 $info = [
"A dimension" =>
"An information",
"Second dimension" => null];
132 $dataset = $dataset->withAlternativeInformation(
136 $this->assertFalse(
"This should not happen.");
137 }
catch (\ArgumentCountError
$e) {
138 $this->assertTrue(
true);
146 $info = [
"A dimension" =>
"An information",
"Another dimension" => 1];
147 $dataset = $dataset->withAlternativeInformation(
151 $this->assertFalse(
"This should not happen.");
153 $this->assertTrue(
true);
160 $points = [
"A dimension" => 1,
"Another dimension" => 2];
161 $info = [
"A dimension" =>
"An information",
"Another dimension" => null];
162 $dataset = $dataset->withPoint(
166 $dataset = $dataset->withAlternativeInformation(
171 $this->assertEquals(
false, $dataset->isEmpty());
173 $dataset = $dataset->withResetDataset();
175 $this->assertEquals(
true, $dataset->isEmpty());
176 $this->assertEquals([], $dataset->getPoints());
177 $this->assertEquals([], $dataset->getAlternativeInformation());
183 $points1 = [
"First dimension" => 0,
"Second dimension" => 0.5,
"Third dimension" => [0, 1]];
184 $points2 = [
"First dimension" => -3,
"Second dimension" => 5,
"Third dimension" => [-4, -1.5]];
185 $points3 = [
"First dimension" => -2,
"Second dimension" => 5,
"Third dimension" => [-3, -1.5]];
186 $dataset = $dataset->withPoint(
190 $dataset = $dataset->withPoint(
194 $dataset = $dataset->withPoint(
198 $this->assertEquals(-2, $dataset->getMinValueForDimension(
"First dimension"));
199 $this->assertEquals(0.5, $dataset->getMinValueForDimension(
"Second dimension"));
200 $this->assertEquals(-3, $dataset->getMinValueForDimension(
"Third dimension"));
206 $points1 = [
"First dimension" => 0,
"Second dimension" => -0.5,
"Third dimension" => [0, 1]];
207 $points2 = [
"First dimension" => -3,
"Second dimension" => -5,
"Third dimension" => [-4, 1.5]];
208 $dataset = $dataset->withPoint(
212 $dataset = $dataset->withPoint(
216 $this->assertEquals(0, $dataset->getMaxValueForDimension(
"First dimension"));
217 $this->assertEquals(-0.5, $dataset->getMaxValueForDimension(
"Second dimension"));
218 $this->assertEquals(1.5, $dataset->getMaxValueForDimension(
"Third dimension"));
testInvalidDimensionKey()
testwithInvalidAlternativeInformationCount()
testwithInvalidAlternativeInformationValue()
testwithInvalidPointsCount()
testwithAlternativeInformation()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...