FromTest.php 386 B

1234567891011121314151617181920
  1. <?php
  2. namespace Tests\Feature;
  3. use Tests\TestCase;
  4. use Illuminate\Foundation\Testing\WithFaker;
  5. use Illuminate\Foundation\Testing\RefreshDatabase;
  6. class FromTest extends TestCase
  7. {
  8. /**
  9. * A basic feature test example.
  10. *
  11. * @return void
  12. */
  13. public function testDelete(){
  14. $response=$this->get('/waybill');
  15. $response->assertStatus(302);
  16. }
  17. }