mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-11-04 05:15:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			567 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			567 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
<?php
 | 
						|
 | 
						|
/**
 | 
						|
 * Class TestCase
 | 
						|
 */
 | 
						|
abstract class TestCase extends Illuminate\Foundation\Testing\TestCase
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * The base URL to use while testing the application.
 | 
						|
     *
 | 
						|
     * @var string
 | 
						|
     */
 | 
						|
    protected $baseUrl = 'http://localhost';
 | 
						|
 | 
						|
    /**
 | 
						|
     * Creates the application.
 | 
						|
     *
 | 
						|
     * @return \Illuminate\Foundation\Application
 | 
						|
     */
 | 
						|
    public function createApplication()
 | 
						|
    {
 | 
						|
        $app = require __DIR__.'/../bootstrap/app.php';
 | 
						|
 | 
						|
        $app->make(Illuminate\Contracts\Console\Kernel::class)->bootstrap();
 | 
						|
 | 
						|
        return $app;
 | 
						|
    }
 | 
						|
}
 |