| 1234567891011121314151617181920 |
- <?php
- namespace Tests\Feature;
- use Tests\TestCase;
- use Illuminate\Foundation\Testing\WithFaker;
- use Illuminate\Foundation\Testing\RefreshDatabase;
- class FromTest extends TestCase
- {
- /**
- * A basic feature test example.
- *
- * @return void
- */
- public function testDelete(){
- $response=$this->get('/waybill');
- $response->assertStatus(302);
- }
- }
|