17 lines
246 B
PHP
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");
|
|
}
|
|
}
|