authserver/testCAS/tests/TestCase.php
author Nicolas Sauret <nicolas.sauret@iri.centrepompidou.fr>
Wed, 13 May 2015 12:39:14 +0200
changeset 2 a2f733f900c0
parent 0 1afc9d2ab94d
permissions -rw-r--r--
Ajout des maquettes scenario élève

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