21 lines
No EOL
252 B
PHP
21 lines
No EOL
252 B
PHP
<?php
|
|
|
|
namespace Tests\Unit;
|
|
|
|
use App\Factory\InvoiceItemFactory;
|
|
use Tests\TestCase;
|
|
|
|
/**
|
|
* @test
|
|
* @covers App\Helpers\Invoice\InvoiceCalc
|
|
*/
|
|
class InvoiceTest extends TestCase
|
|
{
|
|
public function setUp()
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
}
|
|
|
|
} |