2020-05-09 00:35:49 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Tests\Unit;
|
|
|
|
|
|
|
|
use App\Factory\CloneQuoteToInvoiceFactory;
|
|
|
|
use App\Factory\InvoiceFactory;
|
|
|
|
use App\Factory\InvoiceItemFactory;
|
|
|
|
use App\Helpers\Invoice\InvoiceSum;
|
|
|
|
use App\Models\Invoice;
|
|
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
|
|
use Tests\MockAccountData;
|
|
|
|
use Tests\TestCase;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
class CloneQuoteToInvoiceFactoryTest extends TestCase
|
|
|
|
{
|
|
|
|
use MockAccountData;
|
|
|
|
use DatabaseTransactions;
|
|
|
|
|
|
|
|
public function setUp() :void
|
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
$this->makeTestData();
|
2020-05-09 00:35:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testCloneProperties()
|
|
|
|
{
|
|
|
|
$invoice = CloneQuoteToInvoiceFactory::create($this->quote, $this->quote->user_id);
|
|
|
|
|
|
|
|
$this->assertNull($invoice->due_date);
|
|
|
|
$this->assertNull($invoice->partial_due_date);
|
|
|
|
$this->assertNull($invoice->number);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testQuoteToInvoiceConversionService()
|
|
|
|
{
|
|
|
|
$invoice = $this->quote->service()->convertToInvoice();
|
|
|
|
|
|
|
|
$this->assertTrue($invoice instanceof Invoice);
|
|
|
|
}
|
|
|
|
}
|