Your IP : 216.73.217.13


Current Path : /var/www/surf/TYPO3/src/surf/Tests/Functional/
Upload File :
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);
    }
}