0
0
mirror of https://github.com/sp-tarkov/db-website.git synced 2025-02-08 16:50:47 -05:00
db-website/api/tests/ExampleTest.php

22 lines
390 B
PHP
Raw Normal View History

2023-03-02 20:51:47 -05:00
<?php
use Laravel\Lumen\Testing\DatabaseMigrations;
use Laravel\Lumen\Testing\DatabaseTransactions;
class ExampleTest extends TestCase
{
/**
* A basic test example.
*
* @return void
*/
public function testExample()
{
$this->get('/');
$this->assertEquals(
$this->app->version(), $this->response->getContent()
);
}
}