This repository has been archived on 2024-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
keksAccount/tests/ExampleTest.php

24 lines
428 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()
#);
$this->assertTrue(true);
}
}