forked from thephpleague/factory-muffin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbstractTestCase.php
44 lines (38 loc) · 1.04 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
<?php
/*
* This file is part of Factory Muffin.
*
* (c) Graham Campbell <graham@alt-three.com>
* (c) Scott Robertson <scottymeuk@gmail.com>
*
* 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;
/**
* This is abstract test case class.
*
* @author Graham Campbell <graham@alt-three.com>
* @author Scott Robertson <scottymeuk@gmail.com>
*/
abstract class AbstractTestCase extends PHPUnit_Framework_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();
}
}