16 lines
		
	
	
		
			351 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			351 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Tests\Feature\Reports;
 | |
| 
 | |
| use Tests\Feature\FeatureTestCase;
 | |
| 
 | |
| class TaxSummaryTest extends FeatureTestCase
 | |
| {
 | |
|     public function testItShouldSeeTaxSummaryPage()
 | |
|     {
 | |
|         $this->loginAs()
 | |
|             ->get(url('reports/tax-summary'))
 | |
|             ->assertStatus(200)
 | |
|             ->assertSeeText(trans('reports.summary.tax'));
 | |
|     }
 | |
| } |