PHP code example of hermeslin / mockery-overload-properties
1. Go to this page and download the library: Download hermeslin/mockery-overload-properties 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/ */
hermeslin / mockery-overload-properties example snippets
/**
* @test
*/
public function notVipUserBonusShouldCorrect()
{
$properties = [
'id' => 2,
'isVip' => false,
'rank' => 99
];
$user = mop::mock('\User', $properties);
// bounus should be 149
$bunus = 100 * 0.5 + 99;
$vip = new Vip;
$this->assertEquals($bunus, $vip->bonus($userId = 2));
}