14 lines
196 B
PHP
14 lines
196 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Tests\Shopware;
|
||
|
|
||
|
use PHPUnit\Framework\TestCase;
|
||
|
|
||
|
class OrdersTest extends TestCase
|
||
|
{
|
||
|
public function testSomething(): void
|
||
|
{
|
||
|
$this->assertTrue(true);
|
||
|
}
|
||
|
}
|