mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-11-03 20:55:05 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			430 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			430 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
<?php
 | 
						|
 | 
						|
use Illuminate\Foundation\Testing\WithoutMiddleware;
 | 
						|
use Illuminate\Foundation\Testing\DatabaseMigrations;
 | 
						|
use Illuminate\Foundation\Testing\DatabaseTransactions;
 | 
						|
 | 
						|
/**
 | 
						|
 * Class ExampleTest
 | 
						|
 */
 | 
						|
class ExampleTest extends TestCase
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * A basic functional test example.
 | 
						|
     *
 | 
						|
     * @return void
 | 
						|
     */
 | 
						|
    public function testBasicExample()
 | 
						|
    {
 | 
						|
        $this->visit('/')
 | 
						|
             ->see('Laravel');
 | 
						|
    }
 | 
						|
}
 |