Advertisement
Guest User

Untitled

a guest
Jun 25th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <?php
  2.  
  3. namespace Test\Unit;
  4.  
  5. use Tests\TestCase
  6. use Illuminate\Foundation\Testing\RefreshDatabase;
  7.  
  8. public function testExcelReportUpload()
  9. {
  10.  
  11. $this->visit('/report/create')
  12. ->type('Test Name', 'name')
  13. ->attach($absolutePathToFile, 'template_file')
  14. ->press('submit')
  15. ->seePageIs('/report')
  16. ->see('Report added successfully');
  17. }
  18. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement