uopz_set_mock

(PECL uopz 5)

uopz_set_mockUse mock instead of class for new objects

说明

void uopz_set_mock ( string $class , mixed $mock )

If mock is a string containing the name of a class then it will be instantiated instead of class. mock can also be an object.

参数

class

The name of the class to be mocked.

mock

The mock to use in the form of a string containing the name of the class to use or an object.

范例

Example #1 uopz_set_mock() example

<?php
class {
    public static function 
who() {
        echo 
"A";
    }
}

class 
mockA {
    public static function 
who() {
        echo 
"mockA";
    }
}

uopz_set_mock(A::class, mockA::class);
A::who();
?>

以上例程的输出类似于:

mockA

Example #2 uopz_set_mock() example

<?php
class {
    public static function 
who() {
        echo 
"A";
    }
}

uopz_set_mock(A::class, new class {
                            public static function 
who() {
                                echo 
"mockA";
                            }
                        });
A::who();

以上例程的输出类似于:

mockA

参见

User Contributed Notes

There are no user contributed notes for this page.