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 82 83 84 85
|
<?php
namespace phpmock\environment;
use phpmock\Mock;
use phpmock\MockBuilder;
use phpmock\functions\FixedValueFunction;
use phpmock\TestCaseTrait;
use PHPUnit\Framework\TestCase;
/**
* Tests MockEnvironment.
*
* @author Markus Malkusch <markus@malkusch.de>
* @link bitcoin:1335STSwu9hST4vcMRppEPgENMHD2r1REK Donations
* @license http://www.wtfpl.net/txt/copying/ WTFPL
* @see MockEnvironment
*/
class MockEnvironmentTest extends TestCase
{
use TestCaseTrait;
/**
* @var MockEnvironment The tested environment.
*/
private $environment;
protected function setUpCompat()
{
$builder = new MockBuilder();
$builder->setNamespace(__NAMESPACE__)
->setFunctionProvider(new FixedValueFunction(1234));
$this->environment = new MockEnvironment();
$this->environment->addMock($builder->setName("time")->build());
$this->environment->addMock($builder->setName("rand")->build());
}
protected function tearDownCompat()
{
$this->environment->disable();
}
/**
* Tests enable()
*/
public function testEnable()
{
$this->environment->enable();
$this->assertEquals(1234, time());
$this->assertEquals(1234, rand());
}
/**
* Tests define()
*/
public function testDefine()
{
$this->environment->addMock(
new Mock(__NAMESPACE__, "testDefine", function () {
})
);
$this->environment->define();
$this->assertTrue(function_exists("phpmock\\environment\\time"));
$this->assertTrue(function_exists("phpmock\\environment\\rand"));
$this->assertTrue(function_exists("phpmock\\environment\\testDefine"));
}
/**
* Tests disable()
*/
public function testDisable()
{
$this->environment->enable();
$this->environment->disable();
$this->assertNotEquals(1234, time());
// Note: There's a tiny chance that this assertion might fail.
$this->assertNotEquals(1234, rand());
}
}
|