first commit
This commit is contained in:
25
modules/pdgoogleanalytycs4pro/vendor/br33f/php-ga4-mp/tests/Common/BaseTestCase.php
vendored
Normal file
25
modules/pdgoogleanalytycs4pro/vendor/br33f/php-ga4-mp/tests/Common/BaseTestCase.php
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
<?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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user