akaunting/tests/Unit/ExampleTest.php

21 lines
350 B
PHP
Raw Normal View History

2017-09-14 22:21:00 +03:00
<?php
namespace Tests\Unit;
use Tests\TestCase;
use Illuminate\Foundation\Testing\DatabaseMigrations;
use Illuminate\Foundation\Testing\DatabaseTransactions;
class ExampleTest extends TestCase
{
2018-07-14 13:22:33 +03:00
/**
2017-09-14 22:21:00 +03:00
* A basic test example.
*
* @return void
*/
public function testBasicTest()
{
$this->assertTrue(true);
}
}