Skip to content

Commit d238bdd

Browse files
committed
Update tests: Use assertArrayNotHasKey() instead of expectError() before accessing the key
1 parent d85fbaa commit d238bdd

File tree

4 files changed

+8
-16
lines changed

4 files changed

+8
-16
lines changed

test/tests/Analysis/AnalysisTest.php

+2-4
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,7 @@ public function testOffsetGet(): void
118118
$this->assertEquals($information, $analysis[0]);
119119

120120
// Does not exist -> "undefined array key" error
121-
$this->expectError();
122-
$this->assertEquals(null, $analysis[1]);
121+
$this->assertArrayNotHasKey(1, $analysis);
123122
}
124123

125124
public function testOffsetSet(): void
@@ -153,7 +152,6 @@ public function testOffsetUnset(): void
153152
// Unset $information on $analysis[0] using the offsetUnset
154153
unset($analysis[0]);
155154
$this->assertArrayNotHasKey(0, $analysis);
156-
$this->expectError();
157-
$this->assertEquals(null, $analysis[1]);
155+
$this->assertArrayNotHasKey(1, $analysis);
158156
}
159157
}

test/tests/Analysis/ProblemTest.php

+2-4
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,7 @@ public function testOffsetGet(): void
7474
$this->assertEquals($solution, $problem[0]);
7575

7676
// Does not exist -> "undefined array key" error
77-
$this->expectError();
78-
$this->assertEquals(null, $problem[1]);
77+
$this->assertArrayNotHasKey(1, $problem);
7978
}
8079

8180
public function testOffsetSet(): void
@@ -109,7 +108,6 @@ public function testOffsetUnset(): void
109108
// Unset $solution on $problem[0] using the offsetUnset
110109
unset($problem[0]);
111110
$this->assertArrayNotHasKey(0, $problem);
112-
$this->expectError();
113-
$this->assertEquals(null, $problem[1]);
111+
$this->assertArrayNotHasKey(1, $problem);
114112
}
115113
}

test/tests/Log/EntryTest.php

+2-4
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,7 @@ public function testOffsetGet(): void
9191
$this->assertEquals($line, $entry[0]);
9292

9393
// Does not exist -> "undefined array key" error
94-
$this->expectError();
95-
$this->assertEquals(null, $entry[1]);
94+
$this->assertArrayNotHasKey(1, $entry);
9695
}
9796

9897
public function testOffsetSet(): void
@@ -126,7 +125,6 @@ public function testOffsetUnset(): void
126125
// Unset $line1 on $entry[0] using the offsetUnset
127126
unset($entry[0]);
128127
$this->assertArrayNotHasKey(0, $entry);
129-
$this->expectError();
130-
$this->assertEquals(null, $entry[1]);
128+
$this->assertArrayNotHasKey(1, $entry);
131129
}
132130
}

test/tests/Log/LogTest.php

+2-4
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,7 @@ public function testOffsetGet(): void
7474
$this->assertEquals($entry, $log[0]);
7575

7676
// Does not exist -> "undefined array key" error
77-
$this->expectError();
78-
$this->assertEquals(null, $log[1]);
77+
$this->assertArrayNotHasKey(1, $log);
7978
}
8079

8180
public function testOffsetSet(): void
@@ -99,7 +98,6 @@ public function testOffsetUnset(): void
9998
// Unset $entry on $log[0] using the offsetUnset
10099
unset($log[0]);
101100
$this->assertArrayNotHasKey(0, $log);
102-
$this->expectError();
103-
$this->assertEquals(null, $log[1]);
101+
$this->assertArrayNotHasKey(1, $log);
104102
}
105103
}

0 commit comments

Comments
 (0)