1. Go to this page and download the library: Download thatsus/test-api-protect 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/ */
thatsus / test-api-protect example snippets
use ThatsUs\ProtectClasses;
class TestCase extends \Illuminate\Foundation\Testing\TestCase
{
use ProtectClasses;
protected $protected_classes = [
\Facebook\Facebook::class,
\GuzzleHttp\Client::class,
\App\SomeExpensiveClass::class,
];
public function setUp()
{
parent::setUp();
$this->protectClasses();
}
...
}
class InnocentTest extends TestCase
{
public function testInnocentMethod()
{
$good_guy = new Innocent();
$this->assertTrue($good_guy->everythingIsFine());
}
}
class Innocent
{
public function everythingIsFine()
{
app('App\SomeExpensiveClass')->doThing();
return true;
}
}
use Illuminate\Support\Facades\App;
use Mockery;
class InnocentTest extends TestCase
{
public function testInnocentMethod()
{
App::bind(\App\SomeExpensiveClass::class, function () {
$mock = Mockery::mock(\App\SomeExpensiveClass::class);
$mock->shouldReceive('doThing')->once();
return $mock;
});
$good_guy = new Innocent();
$this->assertTrue($good_guy->everythingIsFine());
}
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.