mirror of https://github.com/kcal-app/kcal.git
				
				
				
			
		
			
				
	
	
		
			47 lines
		
	
	
		
			796 B
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			796 B
		
	
	
	
		
			PHP
		
	
	
	
| <?php
 | |
| 
 | |
| namespace Tests\Feature\Http\Controllers;
 | |
| 
 | |
| use App\Http\Controllers\GoalController;
 | |
| use App\Models\Goal;
 | |
| use Database\Factories\GoalFactory;
 | |
| use Illuminate\Foundation\Testing\RefreshDatabase;
 | |
| 
 | |
| class GoalControllerTest extends HttpControllerTestCase
 | |
| {
 | |
|     use RefreshDatabase;
 | |
| 
 | |
|     /**
 | |
|      * @inheritdoc
 | |
|      */
 | |
|     public function class(): string
 | |
|     {
 | |
|         return GoalController::class;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @inheritdoc
 | |
|      */
 | |
|     public function factory(): GoalFactory
 | |
|     {
 | |
|         return Goal::factory();
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @inheritdoc
 | |
|      */
 | |
|     public function routeKey(): string
 | |
|     {
 | |
|         return 'goal';
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @inheritdoc
 | |
|      */
 | |
|     protected function createInstance(): Goal
 | |
|     {
 | |
|         return $this->factory()->for($this->user)->create();
 | |
|     }
 | |
| 
 | |
| }
 |