| Current Path : /var/www/surf/TYPO3/src/surf/Tests/Functional/ |
| Current File : /var/www/surf/TYPO3/src/surf/Tests/Functional/BasicTest.php |
<?php
declare(strict_types=1);
namespace Torresani\Surf\Tests\Functional;
use TYPO3\TestingFramework\Core\Functional\FunctionalTestCase;
/**
* Test case
*
* @author Roberto Torresani <roberto@torresani.eu>
*/
class BasicTest extends FunctionalTestCase
{
/**
* @var array
*/
protected $testExtensionsToLoad = [
'typo3conf/ext/surf',
];
/**
* Just a dummy to show that at least one test is actually executed
*
* @test
*/
public function dummy(): void
{
$this->assertTrue(true);
}
}