PHP.nl

uopz_get_mock

uopz_get_mock

Get the current mock for a class

mixed **uopz_get_mock** string $class

Returns the current mock for . class

classThe 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.

Voorbeeld: 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``uopz_unset_mock