authserver/testCAS/tests/TestCase.php
author durandn
Thu, 12 Nov 2015 18:10:25 +0100
changeset 180 4a9743b78a49
parent 0 1afc9d2ab94d
permissions -rw-r--r--
Small fixes on css, buttons text and placeholder text

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