Files
.github
app
bootstrap
config
database
modules
overrides
public
resources
routes
storage
tests
Feature
Unit
ExampleTest.php
CreatesApplication.php
TestCase.php
.editorconfig
.env.example
.env.testing
.gitattributes
.gitignore
.htaccess
LICENSE.txt
README.md
artisan
composer.json
composer.lock
index.php
manifest.json
nginx.example.com.conf
package-lock.json
package.json
phpunit.xml
serviceworker.js
web.config
webpack.mix.js
akaunting/tests/Unit/ExampleTest.php
2018-07-14 13:22:33 +03:00

21 lines
350 B
PHP

<?php
namespace Tests\Unit;
use Tests\TestCase;
use Illuminate\Foundation\Testing\DatabaseMigrations;
use Illuminate\Foundation\Testing\DatabaseTransactions;
class ExampleTest extends TestCase
{
/**
* A basic test example.
*
* @return void
*/
public function testBasicTest()
{
$this->assertTrue(true);
}
}