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 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
<?php
namespace phpmock;
/**
* Tests Mock.
*
* @author Markus Malkusch <markus@malkusch.de>
* @link bitcoin:1335STSwu9hST4vcMRppEPgENMHD2r1REK Donations
* @license http://www.wtfpl.net/txt/copying/ WTFPL
* @see Mock
*/
class MockTest extends AbstractMockTestCase
{
protected function defineFunction($namespace, $functionName)
{
$mock = new Mock($namespace, $functionName, function () {
});
$mock->define();
}
protected function mockFunction($namespace, $functionName, callable $function)
{
$mock = new Mock($namespace, $functionName, $function);
$mock->enable();
}
protected function disableMocks()
{
Mock::disableAll();
}
/**
* Tests enable().
*/
public function testEnable()
{
$mock = new Mock(
__NAMESPACE__,
"rand",
function () {
return 1234;
}
);
$this->assertNotEquals(1234, rand());
$mock->enable();
$this->assertEquals(1234, rand());
}
/**
* Tests disabling and enabling again.
*/
public function testReenable()
{
$mock = new Mock(
__NAMESPACE__,
"time",
function () {
return 1234;
}
);
$mock->enable();
$mock->disable();
$mock->enable();
$this->assertEquals(1234, time());
}
/**
* Tests disableAll().
*/
public function testDisableAll()
{
$mock2 = new Mock(__NAMESPACE__, "min", "max");
$mock2->enable();
Mock::disableAll();
$this->assertNotEquals(1234, time());
$this->assertEquals(1, min([1, 2]));
}
}
|