authserver/testCAS/tests/TestCase.php
author durandn
Mon, 02 Nov 2015 16:02:47 +0100
changeset 175 21c941c07e7c
parent 0 1afc9d2ab94d
permissions -rw-r--r--
Changes and fixes for Segments scenarii (segment boxes colors and position, annotations list improvements)

<?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;
    }
}