Repo for the search and displace core module including the interface to select files and search and displace operations to run on them. https://searchanddisplace.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
340 B

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