Website/items/tests/ExampleTest.php
SPT-dev aa9160aed1 items website
Made by Shirito and Revingly
Original repo: https://dev.sp-tarkov.com/Rev/spt-items-api
2023-03-02 21:11:54 -05:00

22 lines
390 B
PHP

<?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()
);
}
}