PHP code example of fp / fumocker
1. Go to this page and download the library: Download fp/fumocker library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
fp / fumocker example snippets
class FooTestCase extends \PHPUnit_Framework_TestCase
{
/**
* @var Fumocker\Fumocker
*/
protected $fumocker;
public function setUp()
{
$this->fumocker = new \Fumocker\Fumocker;
}
public function tearDown()
{
$this->fumocker->cleanup();
}
public function testMailNeverCalled()
{
/**
* @var $mock \PHPUnit_Framework_MockObject_MockObject
*/
$mock = $this->fumocker->getMock('Namespace\Where\Tested\Class\Is', 'mail');
$mock
->expects($this->never())
->method('mail')
;
//test your Namespace\Where\Tested\Class\Is\Foo
}
public function testMailSendToAdminWithStatisticSubject()
{
$expectedEmailTo = '[email protected]';
/**
* @var $mock \PHPUnit_Framework_MockObject_MockObject
*/
$mock = $this->fumocker->getMock('Namespace\Where\Tested\Class\Is', 'mail');
$mock
->expects($this->once())
->method('mail')
->with(
$this->equalTo($expectedEmailTo),
$this->equalTo('Statisitic of money earned by a week')
)
;
//test your Namespace\Where\Tested\Class\Is\Foo
}
public function testRealMailSend()
{
/**
* Dont do a mock and real function will be called
*/
}
}