15 lines
230 B
PHP
Executable File
15 lines
230 B
PHP
Executable File
<?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);
|
|
}
|
|
}
|