Files
SyliusGDPRPlugin/tests/PHPUnit/DummyTest.php
2021-05-21 14:21:04 +02:00

16 lines
212 B
PHP

<?php
declare(strict_types=1);
namespace Tests\Synolia\SyliusGDPRPlugin\PHPUnit;
use Webmozart\Assert\Assert;
class DummyTest
{
public function testDummy(): void
{
Assert::true(true);
}
}