Files
ponzi/tests/TestCase.php
2014-10-20 11:14:41 -05:00

16 lines
258 B
PHP

<?php
class TestCase extends Illuminate\Foundation\Testing\TestCase {
/**
* Creates the application.
*
* @return \Illuminate\Foundation\Application
*/
public function createApplication()
{
return require __DIR__.'/../bootstrap/app.php';
}
}