keksAccount/tests/ExampleTest.php

24 lines
428 B
PHP
Raw Normal View History

2019-04-24 18:46:41 +00: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()
{
2019-12-02 13:26:32 +00:00
#$this->get('/');
2019-04-24 18:46:41 +00:00
2019-12-02 13:26:32 +00:00
#$this->assertEquals(
# $this->app->version(), $this->response->getContent()
#);
$this->assertTrue(true);
2019-04-24 18:46:41 +00:00
}
}