mirror of
https://github.com/jbcr/SyliusGDPRPlugin.git
synced 2026-03-25 01:12:10 +01:00
16 lines
212 B
PHP
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);
|
|
}
|
|
}
|