Files
interblue.pl/modules/ps_legalcompliance/tests/Unit/DummyTest.php
2024-10-25 14:16:28 +02:00

17 lines
246 B
PHP

<?php
namespace PrestaShop\PrestaShop\Tests\Unit;
use PHPUnit_Framework_TestCase;
class DummyTest extends PHPUnit_Framework_TestCase
{
public function test_Dummy()
{
$this->assertTrue(true, "Everything works fine");
}
}