uopz_get_mock
(PECL uopz 5, PECL uopz 6, PECL uopz 7)
uopz_get_mock — Get the current mock for a class
参数
class
-
The name of the mocked class.
返回值
Either a string containing the name of the mock, or an object,
or null
if no mock has been set.
示例
示例 #1 uopz_get_mock() example
<?php
class A {
public static function who() {
echo "A";
}
}
class mockA {
public static function who() {
echo "mockA";
}
}
uopz_set_mock(A::class, mockA::class);
echo uopz_get_mock(A::class);
?>
以上示例会输出:
mockA
参见
- uopz_set_mock() - Use mock instead of class for new objects
- uopz_unset_mock() - Unset previously set mock
+添加备注
用户贡献的备注
此页面尚无用户贡献的备注。
备份地址:http://www.lvesu.com/blog/php/function.uopz-get-mock.php