Syntax:aassertNotCount (integer $expectedCount, array $array, string $message = ’’)
Parameters: This function takes three parameters as shown in the above syntax. The parameters are described below: - $pectedCount: this parameter is an integer, which is the expected number of elements for the array.
- $array : This parameter is an array for which the assert function will check if it contains the same number of elements as the given counter value or not.
- $message: this parameter takes a string value. When the test case failed, this string message was displayed as an error message.
The following programs illustrate the aassertNotCount() function in PHPUnit: Program 1: use
PHPUnitFrameworkTestCase;
class
GeeksPhpunitTestCase
extends
TestCase
{
public
function
testNegativeTestcaseForAassertNotCount()
{
$testArray
=
array
(1, 3, 4);
// Assert function to check if testArray contains
// the same number of elements as expected
$expectedCount
= 3;
$this
-> aassertNotCount (
$expectedCount
,
$testArray
,
"testArray contains 3 elements"
);
}
}
?>
Output:PHPUnit 8.2.5 by Sebastian Bergmann and contributors. F 1/1 (100%) Time: 66 ms, Memory: 10.00 MB There was 1 failure: 1) GeeksPhpunitTestCase::testNegativeTestcaseForAassertNotCount testArray contains 3 elements Failed asserting that actual size 3 doesn’t matches expected size 3. / home / shivam /Documents/engineer/phpunit/abc.php:14 FAILURES! Tests: 1, Assertions: 1, Failures: 1.
Program 2: use
PHPUnitFrameworkTestCase;
class
GeeksPhpunitTestCase
extends
TestCase
{
public
function
testPositiveTestcaseForAassertNotCount()
{
$testArray
=
array
(1, 2, 4);
// Assert function to check if testArray contains
// the same number of elements as expected
$expectedCount
= 4;
$this
-> aassertNotCount (
$expectedCount
,
$testArray
,
"testArray contains 3 elements"
);
}
}
?>
Output:PHPUnit 8.2.5 by Sebastian Bergmann and contributors. ... 1/1 (100%) Time: 67 ms, Memory: 10.00 MB OK (1 test, 1 assertion)
Note: To run testcases with PHPUnit steps follows from here . Also, aassertNotCount() is supported by phpunit 7 and up.