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
|
<?php
namespace phpmock\phpunit;
use phpmock\Mock;
use PHPUnit\Framework\TestCase;
/**
* Tests MockDisabler.
*
* @author Markus Malkusch <markus@malkusch.de>
* @link bitcoin:1335STSwu9hST4vcMRppEPgENMHD2r1REK Donations
* @license http://www.wtfpl.net/txt/copying/ WTFPL
* @see MockDisabler
*/
class MockDisablerTest extends TestCase
{
/**
* Tests disabling the mock.
*
* @test
*/
public function testEndTest()
{
$min = new Mock(__NAMESPACE__, "min", "max");
$min->enable();
$this->assertEquals(9, min(1, 9));
$disabler = new MockDisabler($min);
$disabler->endTest($this, 1);
$this->assertEquals(1, min(1, 9));
}
}
|