-
-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathAbstractTestCase.php
45 lines (39 loc) · 1.06 KB
/
AbstractTestCase.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
/*
* This file is part of Factory Muffin.
*
* (c) Graham Campbell <[email protected]>
* (c) Scott Robertson <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
use League\FactoryMuffin\FactoryMuffin;
use League\FactoryMuffin\Faker\Facade as Faker;
use PHPUnit\Framework\TestCase;
/**
* This is abstract test case class.
*
* @author Graham Campbell <[email protected]>
* @author Scott Robertson <[email protected]>
*/
abstract class AbstractTestCase extends TestCase
{
protected static $fm;
public static function setupBeforeClass()
{
static::$fm = new FactoryMuffin();
static::$fm->loadFactories(__DIR__.'/factories');
Faker::setLocale('en_GB');
}
public static function tearDownAfterClass()
{
static::$fm->deleteSaved();
static::$fm = new FactoryMuffin();
}
protected function reload()
{
static::tearDownAfterClass();
static::setupBeforeClass();
}
}