Add Codeception testing suite

This commit is contained in:
Flavio Copes
2016-10-13 16:36:52 +02:00
parent c284c8a26c
commit d4be41f0bd
8 changed files with 160 additions and 0 deletions

11
tests/_bootstrap.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
// This is global bootstrap for autoloading
use Codeception\Util\Fixtures;
use Faker\Factory;
ini_set('error_log', __DIR__ . '/error.log');
$fake = Factory::create();
Fixtures::add('fake', $fake);