Files
drmaterac.pl/modules/pdgoogleanalytycs4pro/vendor/br33f/php-ga4-mp/tests/Common/BaseTestCase.php
2025-01-06 20:47:25 +01:00

25 lines
390 B
PHP

<?php
/**
* User: Damian Zamojski (br33f)
* Date: 22.06.2021
* Time: 14:49
*/
namespace Tests\Common;
use Faker\Factory;
use PHPUnit\Framework\TestCase;
class BaseTestCase extends TestCase
{
protected $faker;
/**
* BaseTestCase constructor.
*/
public function __construct()
{
parent::__construct();
$this->faker = Factory::create();
}
}