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 86 87 88 89 90 91 92
|
<?php
// A different namespace
namespace phpmocktest;
use phpmock\Mock;
use phpmock\MockBuilder;
use phpmock\functions\FixedValueFunction;
use phpmock\TestCaseTrait;
use PHPUnit\Framework\TestCase;
/**
* Tests Mock in a different namespace.
*
* @author Markus Malkusch <markus@malkusch.de>
* @link bitcoin:1335STSwu9hST4vcMRppEPgENMHD2r1REK Donations
* @license http://www.wtfpl.net/txt/copying/ WTFPL
* @see Mock
*/
class MockNamespaceTest extends TestCase
{
use TestCaseTrait;
/**
* @var Mock
*/
private $mock;
/**
* @var MockBuilder
*/
private $builder;
protected function setUpCompat()
{
$this->builder = new MockBuilder();
$this->builder
->setName("time")
->setFunctionProvider(new FixedValueFunction(1234));
}
protected function tearDownCompat()
{
if (! empty($this->mock)) {
$this->mock->disable();
unset($this->mock);
}
}
/**
* Tests defining mocks in a different namespace.
* @dataprovider provideTestNamespace
* @runInSeparateProcess
*/
public function testDefiningNamespaces()
{
$this->builder->setNamespace(__NAMESPACE__);
$this->mock = $this->builder->build();
$this->mock->enable();
$this->assertEquals(1234, time());
}
/**
* Tests redefining mocks in a different namespace.
* @dataprovider provideTestNamespace
*/
public function testRedefiningNamespaces()
{
$this->builder->setNamespace(__NAMESPACE__);
$this->mock = $this->builder->build();
$this->mock->enable();
$this->assertEquals(1234, time());
}
/**
* Provides namespaces for testNamespace().
*
* @return string[][] Namespaces.
*/
public function provideTestNamespace()
{
return [
[__NAMESPACE__],
['phpmock\test'],
['\phpmock\test'],
['phpmock\test\\'],
['\phpmock\test\\']
];
}
}
|