Created
October 13, 2019 17:10
-
-
Save wazum/12d1e330f0790d6f597062e67b1e0e34 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
declare(strict_types=1); | |
namespace Vendor\MyExtension\Test\Unit\Service; | |
use Vendor\MyExtension\Service\AbstractSomethingService; | |
use TYPO3\TestingFramework\Core\Unit\UnitTestCase; | |
class AbstractSomethingServiceTest extends UnitTestCase | |
{ | |
protected $resetSingletonInstances = true; | |
/** | |
* @test | |
*/ | |
public function addSomethingCreatesTheCorrectStructure(): void | |
{ | |
… | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment