29 lines
		
	
	
		
			610 B
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			610 B
		
	
	
	
		
			PHP
		
	
	
	
| <?php
 | |
| 
 | |
| namespace Tests\Lib;
 | |
| 
 | |
| use Illuminate\Testing\TestResponse;
 | |
| 
 | |
| trait MakesHttpCalls
 | |
| {
 | |
|     /**
 | |
|      * @param array<string, mixed> $filter
 | |
|      */
 | |
|     public function callFilter(string $routeName, array $filter): TestResponse
 | |
|     {
 | |
|         return $this->call('GET', $this->filterUrl($routeName, $filter));
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @param array<string, mixed> $filter
 | |
|      */
 | |
|     public function filterUrl(string $routeName, array $filter): string
 | |
|     {
 | |
|         $params = [
 | |
|             'filter' => base64_encode(rawurlencode(json_encode($filter))),
 | |
|         ];
 | |
| 
 | |
|         return route($routeName, $params);
 | |
|     }
 | |
| }
 |