Friday, December 12, 2025
HomeLanguagesPHPUnit | assertClassHasStaticAttribute() function

PHPUnit | assertClassHasStaticAttribute() function

The assertClassHasStaticAttribute() function is a builtin function in PHPUnit and is used to assert a class having a static attribute. This assertion will return true in the case if the class contains the provided attribute as static element else return false and in case of true the asserted test case got passed else test case got failed.

Syntax:

assertClassHasStaticAttribute(string $attributeName, string $className, string $message = ''])

Parameters: This function accepts three parameters as shown in the above syntax. The parameters are described below:

  1. $attributeName: This parameter represents the attributeName to be attribute of class in array.
  2. $className: This parameter is a class name for which the assert function will check whether it contains attribute or not.
  3. $message: This parameter takes string value. When the testcase got failed this string message got displayed as error message.

Below programs illustrate the assertClassHasStaticAttribute() function:

Program 1:




<?php
use PHPUnit\Framework\TestCase;
  
// test class
Class testClass{
    public static $attribute = "test attribute";
}
  
class GeeksPhpunitTestCase extends TestCase
{
    public function testNegativeTestcaseForClassHasStaticAttribute()
    {
        // assert function to test whether 'neveropen' is a attribute of testclass
        $this->assertClassHasStaticAttribute('neveropen', "testClass", "testClass doesn't has neveropen as static attribute") ;
    }
}
?>


Output:

PHPUnit 6.5.5 by Sebastian Bergmann and contributors.

F                                                                   1 / 1 (100%)

Time: 682 ms, Memory: 4.00MB

There was 1 failure:

1) GeeksPhpunitTestCase::testNegativeTestcaseForClassHasStaticAttribute
testClass doesn't has neveropen as static attribute
Failed asserting that class "testClass" has static attribute "neveropen".

/home/shivam/Documents/neveropen/phpunit/abc.php:14

FAILURES!
Tests: 1, Assertions: 1, Failures: 1.

Program 2:




<?php
use PHPUnit\Framework\TestCase;
  
// test class
Class testClass{
    public static $attribute = "test attribute";
}
  
class GeeksPhpunitTestCase extends TestCase
{
    public function testPositiveTestcaseForClassHasStaticAttribute()
    {
        // assert function to test whether 'attribute' is a attribute of testclass
        $this->assertClassHasStaticAttribute('attribute', "testClass", "testClass doesn't has neveropen as static attribute") ;
    }
}
?>


Output:

PHPUnit 6.5.5 by Sebastian Bergmann and contributors.

.                                                                   1 / 1 (100%)

Time: 21 ms, Memory: 4.00MB

OK (1 test, 1 assertion)

Note : To run testcases with phpunit follow steps from here.

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

Most Popular

Dominic
32445 POSTS0 COMMENTS
Milvus
105 POSTS0 COMMENTS
Nango Kala
6814 POSTS0 COMMENTS
Nicole Veronica
11952 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12029 POSTS0 COMMENTS
Shaida Kate Naidoo
6949 POSTS0 COMMENTS
Ted Musemwa
7199 POSTS0 COMMENTS
Thapelo Manthata
6895 POSTS0 COMMENTS
Umr Jansen
6882 POSTS0 COMMENTS