Files
InvoiceShelf/tests/Unit/EstimateItemTest.php
2024-01-29 04:46:01 -06:00

37 lines
1.1 KiB
PHP

<?php
use Illuminate\Support\Facades\Artisan;
use InvoiceShelf\Models\Estimate;
use InvoiceShelf\Models\EstimateItem;
use InvoiceShelf\Models\Item;
beforeEach(function () {
Artisan::call('db:seed', ['--class' => 'DatabaseSeeder', '--force' => true]);
Artisan::call('db:seed', ['--class' => 'DemoSeeder', '--force' => true]);
});
test('estimate item belongs to estimate', function () {
$estimateItem = EstimateItem::factory()->forEstimate()->create();
$this->assertTrue($estimateItem->estimate()->exists());
});
test('estimate item belongs to item', function () {
$estimateItem = EstimateItem::factory()->create([
'item_id' => Item::factory(),
'estimate_id' => Estimate::factory(),
]);
$this->assertTrue($estimateItem->item()->exists());
});
test('estimate item has many taxes', function () {
$estimateItem = EstimateItem::factory()->hasTaxes(5)->create([
'estimate_id' => Estimate::factory(),
]);
$this->assertCount(5, $estimateItem->taxes);
$this->assertTrue($estimateItem->taxes()->exists());
});