13 lines
280 B
PHP
13 lines
280 B
PHP
<?php
|
|
|
|
use App\Models\ServiceEntry;
|
|
|
|
test('service entry calculates total amount from quantity and unit price', function () {
|
|
$entry = new ServiceEntry([
|
|
'quantity' => 2471,
|
|
'unit_price' => 15.50,
|
|
]);
|
|
|
|
expect($entry->totalAmount())->toBe(38300.5);
|
|
});
|