uopz_get_mock

(PECL uopz 5, PECL uopz 6)

uopz_get_mockGet the current mock for a class

说锟斤拷

uopz_get_mock ( string $class ) : mixed

Returns the current mock for 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.

锟斤拷锟斤拷

Example #1 uopz_get_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);
echo 
uopz_get_mock(A::class);
?>

锟斤拷锟斤拷锟斤拷锟教伙拷锟斤拷锟斤拷锟�

mockA

锟轿硷拷