assertClassNotHasStaticAttribute()函数是PHPUnit中的内置函数,用于断言不具有静态属性的类。如果该类不包含所提供的属性作为静态元素,则此断言将返回true;否则,返回false;如果为true,则通过断言的测试用例,否则测试用例失败。
用法:
assertClassNotHasStaticAttribute(string $attributeName, string $className, string $message = ''])
参数:该函数接受三个参数,如以上语法所示。参数说明如下:
- $attributeName:此参数表示attributeName不能作为数组中类的属性。
- $className:此参数是一个类名,assert函数将为其检查其是否包含属性。
- $message:此参数采用字符串值。当测试用例失败时,此字符串消息将显示为错误消息。
以下示例程序旨在说明assertClassNotHasStaticAttribute()函数:
程序1::
<?php
use PHPUnit\Framework\TestCase;
// test class
Class testClass{
public static $geeks = "test attribute";
}
class GeeksPhpunitTestCase extends TestCase
{
public function testNegativeTestcaseForClassNotHasStaticAttribute()
{
// assert function to test whether 'geeks' is a attribute of testclass
$this->assertClassNotHasStaticAttribute('geeks', "testClass", "testClass has geeks as static attribute") ;
}
}
?>
输出:
PHPUnit 6.5.5 by Sebastian Bergmann and contributors. F 1 / 1 (100%) Time:46 ms, Memory:4.00MB There was 1 failure: 1) GeeksPhpunitTestCase::testNegativeTestcaseForClassNotHasStaticAttribute testClass has geeks as static attribute Failed asserting that class "testClass" does not have static attribute "geeks". /home/shivam/Documents/geeks/phpunit/abc.php:14 FAILURES! Tests:1, Assertions:1, Failures:1.
程序2::
<?php
use PHPUnit\Framework\TestCase;
// test class
Class testClass{
public static $attribute = "test attribute";
}
class GeeksPhpunitTestCase extends TestCase
{
public function testPositiveTestcaseForClassNotHasStaticAttribute()
{
// assert function to test whether 'geeks' is a attribute of testclass
$this->assertClassNotHasStaticAttribute('geeks', "testClass", "testClass has geeks as static attribute") ;
}
}
?>
输出:
PHPUnit 6.5.5 by Sebastian Bergmann and contributors. . 1 / 1 (100%) Time:21 ms, Memory:4.00MB OK (1 test, 1 assertion)
注意:要使用phpunit运行测试用例,请遵循此处的步骤。
相关用法
- PHP PHPUnit assertDirectoryNotIsWritable()用法及代码示例
- PHP PHPUnit assertEmpty()用法及代码示例
- PHP PHPUnit assertEquals()用法及代码示例
- PHP PHPUnit assertNotContains()用法及代码示例
- PHP PHPUnit assertCount()用法及代码示例
- PHP PHPUnit assertStringContainsString()用法及代码示例
- PHP PHPUnit assertContainsOnlyInstancesOf()用法及代码示例
- PHP PHPUnit assertStringNotContainsStringIgnoringCase()用法及代码示例
- PHP PHPUnit assertClassHasAttribute()用法及代码示例
- PHP PHPUnit assertArrayNotHasKey()用法及代码示例
- PHP PHPUnit assertArraySubset()用法及代码示例
- PHP PHPUnit assertArrayHasKey()用法及代码示例
- PHP PHPUnit assertDirectoryIsReadable()用法及代码示例
- PHP PHPUnit assertNotEquals()用法及代码示例
- PHP PHPUnit assertClassHasStaticAttribute()用法及代码示例
注:本文由纯净天空筛选整理自Shivam.Pradhan大神的英文原创作品 PHPUnit | assertClassNotHasStaticAttribute() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。