uopz_unset_mock
uopz_unset_mock
Unset previously set mock
void **uopz_unset_mock** string $class
Unsets the previously set mock for .
class
classThe name of the mocked class.
return.void
A is thrown, if no mock was previously
set for .
RuntimeException``class
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);
uopz_unset_mock(A::class);
A::who();
?>
A
uopz_set_mock``uopz_get_mock