TestCase.php 335 Bytes
Newer Older
1 2 3 4
<?php

class TestCase extends Illuminate\Foundation\Testing\TestCase {

5
	/**
Ben Corlett committed
6 7
	 * Creates the application.
	 *
8
	 * @return \Symfony\Component\HttpKernel\HttpKernelInterface
Ben Corlett committed
9 10 11 12
	 */
	public function createApplication()
	{
		$unitTesting = true;
13

Ben Corlett committed
14
		$testEnvironment = 'testing';
15

Ben Corlett committed
16 17
		return require __DIR__.'/../../bootstrap/start.php';
	}
18

19
}