/
var
/
www
/
html
/
plugin-techloyce
/
tests
/
Feature
/
Upload File
HOME
<?php namespace Tests\Feature; use Illuminate\Foundation\Testing\RefreshDatabase; use Illuminate\Foundation\Testing\WithFaker; use Tests\TestCase; class MiddlewareTest extends TestCase { /** * A basic feature test example. * * @return void */ public function testMiddleware() { $response = $this->get('/'); $response->assertStatus(404); } }