File tree 4 files changed +8
-16
lines changed
4 files changed +8
-16
lines changed Original file line number Diff line number Diff line change @@ -118,8 +118,7 @@ public function testOffsetGet(): void
118
118
$ this ->assertEquals ($ information , $ analysis [0 ]);
119
119
120
120
// Does not exist -> "undefined array key" error
121
- $ this ->expectError ();
122
- $ this ->assertEquals (null , $ analysis [1 ]);
121
+ $ this ->assertArrayNotHasKey (1 , $ analysis );
123
122
}
124
123
125
124
public function testOffsetSet (): void
@@ -153,7 +152,6 @@ public function testOffsetUnset(): void
153
152
// Unset $information on $analysis[0] using the offsetUnset
154
153
unset($ analysis [0 ]);
155
154
$ this ->assertArrayNotHasKey (0 , $ analysis );
156
- $ this ->expectError ();
157
- $ this ->assertEquals (null , $ analysis [1 ]);
155
+ $ this ->assertArrayNotHasKey (1 , $ analysis );
158
156
}
159
157
}
Original file line number Diff line number Diff line change @@ -74,8 +74,7 @@ public function testOffsetGet(): void
74
74
$ this ->assertEquals ($ solution , $ problem [0 ]);
75
75
76
76
// Does not exist -> "undefined array key" error
77
- $ this ->expectError ();
78
- $ this ->assertEquals (null , $ problem [1 ]);
77
+ $ this ->assertArrayNotHasKey (1 , $ problem );
79
78
}
80
79
81
80
public function testOffsetSet (): void
@@ -109,7 +108,6 @@ public function testOffsetUnset(): void
109
108
// Unset $solution on $problem[0] using the offsetUnset
110
109
unset($ problem [0 ]);
111
110
$ this ->assertArrayNotHasKey (0 , $ problem );
112
- $ this ->expectError ();
113
- $ this ->assertEquals (null , $ problem [1 ]);
111
+ $ this ->assertArrayNotHasKey (1 , $ problem );
114
112
}
115
113
}
Original file line number Diff line number Diff line change @@ -91,8 +91,7 @@ public function testOffsetGet(): void
91
91
$ this ->assertEquals ($ line , $ entry [0 ]);
92
92
93
93
// Does not exist -> "undefined array key" error
94
- $ this ->expectError ();
95
- $ this ->assertEquals (null , $ entry [1 ]);
94
+ $ this ->assertArrayNotHasKey (1 , $ entry );
96
95
}
97
96
98
97
public function testOffsetSet (): void
@@ -126,7 +125,6 @@ public function testOffsetUnset(): void
126
125
// Unset $line1 on $entry[0] using the offsetUnset
127
126
unset($ entry [0 ]);
128
127
$ this ->assertArrayNotHasKey (0 , $ entry );
129
- $ this ->expectError ();
130
- $ this ->assertEquals (null , $ entry [1 ]);
128
+ $ this ->assertArrayNotHasKey (1 , $ entry );
131
129
}
132
130
}
Original file line number Diff line number Diff line change @@ -74,8 +74,7 @@ public function testOffsetGet(): void
74
74
$ this ->assertEquals ($ entry , $ log [0 ]);
75
75
76
76
// Does not exist -> "undefined array key" error
77
- $ this ->expectError ();
78
- $ this ->assertEquals (null , $ log [1 ]);
77
+ $ this ->assertArrayNotHasKey (1 , $ log );
79
78
}
80
79
81
80
public function testOffsetSet (): void
@@ -99,7 +98,6 @@ public function testOffsetUnset(): void
99
98
// Unset $entry on $log[0] using the offsetUnset
100
99
unset($ log [0 ]);
101
100
$ this ->assertArrayNotHasKey (0 , $ log );
102
- $ this ->expectError ();
103
- $ this ->assertEquals (null , $ log [1 ]);
101
+ $ this ->assertArrayNotHasKey (1 , $ log );
104
102
}
105
103
}
You can’t perform that action at this time.
0 commit comments