assertEmpty()

assertEmpty()

1
assertEmpty(mixed $actual[, string $message = ''])

Reports an error identified by $message if $actual is not empty.

assertNotEmpty() is the inverse of this assertion and takes the same arguments.

assertAttributeEmpty() and assertAttributeNotEmpty() are convenience wrappers that can be applied to a public, protected, or private attribute of a class or object.

Example A.14: Usage of assertEmpty()

1
2
3
4
5
6
7
8
9
10
11
<?php
use PHPUnit\Framework\TestCase;
 
class EmptyTest extends TestCase
{
    public function testFailure()
    {
        $this->assertEmpty(['foo']);
    }
}
?>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
phpunit EmptyTest
PHPUnit 5.6.0 by Sebastian Bergmann and contributors.
 
F
 
Time: 0 seconds, Memory: 4.75Mb
 
There was 1 failure:
 
1) EmptyTest::testFailure
Failed asserting that an array is empty.
 
/home/sb/EmptyTest.php:6
 
FAILURES!
Tests: 1, Assertions: 1, Failures: 1.
doc_PHPUnit
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.