We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a5c7552 + 4764ae3 commit a4ce274Copy full SHA for a4ce274
1 file changed
src/Codeception/Verify.php
@@ -184,14 +184,14 @@ public function containsOnlyInstancesOf($class)
184
a::assertContainsOnlyInstancesOf($class, $this->actual, $this->description);
185
}
186
187
- public function count($array)
+ public function count($expectedCount)
188
{
189
- a::assertCount($array, $this->actual, $this->description);
+ a::assertCount($expectedCount, $this->actual, $this->description);
190
191
192
- public function notCount($array)
+ public function notCount($expectedCount)
193
194
- a::assertNotCount($array, $this->actual, $this->description);
+ a::assertNotCount($expectedCount, $this->actual, $this->description);
195
196
197
public function equalXMLStructure($xml, $checkAttributes = FALSE)
0 commit comments