freakimkaefig/Music-XML-Analyzer

View on GitHub
app/tests/TestCase.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

/**
 * Class to test application creation
 *
 * @package Test
 */
class TestCase extends Illuminate\Foundation\Testing\TestCase {

    /**
     * Creates the application.
     *
     * @return \Symfony\Component\HttpKernel\HttpKernelInterface
     */
    public function createApplication()
    {
        $unitTesting = true;

        $testEnvironment = 'testing';

        return require __DIR__.'/../../bootstrap/start.php';
    }

}