PATH:
home
/
rwabteecom
/
public_html
/
tests
/
Feature
/
Editing: ExampleTest.php
<?php namespace Tests\Feature; use Tests\TestCase; class ExampleTest extends TestCase { /** * A basic test example. */ public function test_example(): void { $response = $this->get('/'); $response->assertStatus(200); } }
SAVE
CANCEL