uopz_unset_mock

(PECL uopz 5, PECL uopz 6)

uopz_unset_mockUnset previously set mock

Açıklama

uopz_unset_mock(string $class): void

Unsets the previously set mock for class.

Değiştirgeler

class

The name of the mocked class.

Dönen Değerler

Hiçbir değer dönmez.

Hatalar/İstisnalar

A RuntimeException is thrown, if no mock was previously set for class.

Örnekler

Örnek 1 uopz_unset_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);
uopz_unset_mock(A::class);
A::who();
?>

Yukarıdaki örneğin çıktısı:

A

Ayrıca Bakınız

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top