remove example test

This commit is contained in:
Marco Cavalli 2023-10-12 10:28:51 +02:00
parent 7e5524e0dd
commit 66b3e005e7
1 changed files with 0 additions and 23 deletions

View File

@ -1,23 +0,0 @@
<?php
namespace Tests;
use Laravel\Lumen\Testing\DatabaseMigrations;
use Laravel\Lumen\Testing\DatabaseTransactions;
class ExampleTest extends TestCase
{
/**
* A basic test example.
*
* @return void
*/
public function test_that_base_endpoint_returns_a_successful_response()
{
$this->get('/');
$this->assertEquals(
$this->app->version(), $this->response->getContent()
);
}
}