Skip to content

Instantly share code, notes, and snippets.

@wazum
Created October 13, 2019 17:10
Show Gist options
  • Save wazum/12d1e330f0790d6f597062e67b1e0e34 to your computer and use it in GitHub Desktop.
Save wazum/12d1e330f0790d6f597062e67b1e0e34 to your computer and use it in GitHub Desktop.
<?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