authserver/testCAS/tests/TestCase.php
author julien <julien@erret.com>
Thu, 30 Jul 2015 18:35:54 +0200
changeset 65 dd52219147fe
parent 0 1afc9d2ab94d
permissions -rw-r--r--
add a cancel button to close the annotation-creation box

<?php

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

        $app->make('Illuminate\Contracts\Console\Kernel')->bootstrap();

        return $app;
    }
}