mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 10:47:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			339 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			339 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| declare(strict_types = 1);
 | |
| 
 | |
| /**
 | |
|  * Class BasicTest
 | |
|  */
 | |
| 
 | |
| class BasicTest extends TestCase
 | |
| {
 | |
|     /**
 | |
|      * A basic test example. May take a minute because the test data is being generated.
 | |
|      *
 | |
|      * @slowThreshold 60000
 | |
|      * @return void
 | |
|      */
 | |
|     public function testExample()
 | |
|     {
 | |
|         $this->assertTrue(true);
 | |
| 
 | |
|     }
 | |
| }
 |