mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-29 15:26:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			445 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			445 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Pterodactyl\Tests\Browser\Processes\Dashboard;
 | |
| 
 | |
| use Pterodactyl\Tests\Browser\BrowserTestCase;
 | |
| 
 | |
| abstract class DashboardTestCase extends BrowserTestCase
 | |
| {
 | |
|     /**
 | |
|      * @var \Pterodactyl\Models\User
 | |
|      */
 | |
|     protected $user;
 | |
| 
 | |
|     /**
 | |
|      * Setup tests and provide a default user to calling functions.
 | |
|      */
 | |
|     protected function setUp(): void
 | |
|     {
 | |
|         parent::setUp();
 | |
| 
 | |
|         $this->user = $this->user();
 | |
|     }
 | |
| }
 | 
