uopz_set_mock

(PECL uopz 5)

uopz_set_mockUse mock instead of class for new objects

説明

uopz_set_mock ( string $class , mixed $mock ) : void

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. If a string is passed, it has to be the fully qualified class name. It is recommended to use the ::class magic constant in this case.

例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

例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

参考