File: MockDisablerPHPUnit10.php

package info (click to toggle)
php-mock-phpunit 2.13.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 248 kB
  • sloc: php: 1,066; makefile: 20; xml: 7; sh: 7
file content (62 lines) | stat: -rw-r--r-- 1,510 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?php

namespace phpmock\phpunit;

use Closure;
use phpmock\Deactivatable;
use PHPUnit\Event\Test\Finished;
use PHPUnit\Event\Test\FinishedSubscriber;

/**
 * Test listener for PHPUnit integration.
 *
 * This class disables mock functions after a test was run.
 *
 * @author Markus Malkusch <markus@malkusch.de>
 * @link bitcoin:1335STSwu9hST4vcMRppEPgENMHD2r1REK Donations
 * @license http://www.wtfpl.net/txt/copying/ WTFPL
 * @internal
 */
class MockDisablerPHPUnit10 implements FinishedSubscriber
{
    /**
     * @var Deactivatable The function mocks.
     */
    private $deactivatable;

    /**
     * @var Closure|null The callback to execute after the test.
     */
    private $callback;
    
    /**
     * Sets the function mocks.
     *
     * @param Deactivatable $deactivatable The function mocks.
     * @param Closure|null $callback       The callback to execute after the test.
     */
    public function __construct(Deactivatable $deactivatable, ?Closure $callback = null)
    {
        $this->deactivatable = $deactivatable;
        $this->callback = $callback;
    }

    /**
     * @SuppressWarnings(PHPMD)
     */
    public function notify(Finished $event) : void
    {
        $this->deactivatable->disable();
        if ($this->callback !== null) {
            ($this->callback)($this);
        }
    }

    public function endTest(): void
    {
        $this->deactivatable->disable();
        if ($this->callback !== null) {
            ($this->callback)($this);
        }
    }
}