uopz_unset_mock
(PECL uopz 5, PECL uopz 6, PECL uopz 7)
uopz_unset_mock — Unset previously set mock
Beschreibung
$class
): void
Unsets the previously set mock for class
.
Parameter-Liste
-
class
-
The name of the mocked class.
Rückgabewerte
Es wird kein Wert zurückgegeben.
Fehler/Exceptions
A RuntimeException is thrown, if no mock was previously
set for class
.
Beispiele
Beispiel #1 uopz_unset_mock() 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();
?>
Das oben gezeigte Beispiel erzeugt folgende Ausgabe:
A
Siehe auch
- uopz_set_mock() - Use mock instead of class for new objects
- uopz_get_mock() - Get the current mock for a class