2017-09-14 22:21:00 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Tests\Unit;
|
|
|
|
|
2020-03-14 23:38:54 +03:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2017-09-14 22:21:00 +03:00
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|