Files

15 lines
230 B
PHP
Raw Permalink Normal View History

2024-05-07 12:17:25 +02:00
<?php
namespace CodexShaper\Dumper\Test;
use PHPUnit\Framework\TestCase;
class Product extends TestCase
{
/** @test */
public function it_provides_a_factory_method()
{
$this->assertSame(true, true);
}
}