for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace EasyHttp\LayerContracts\Tests;
use Faker\Factory;
use Faker\Generator;
abstract class TestCase extends \PHPUnit\Framework\TestCase
{
protected Generator $faker;
public function setUp(): void
$this->faker = Factory::create();
parent::setUp();
}