Skip to content

Commit

Permalink
test(feature): add new property of cash flow statement
Browse files Browse the repository at this point in the history
  • Loading branch information
KennethTrecy committed Jun 15, 2024
1 parent 925b5fa commit a4727f3
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions t/Feature/Resource/FrozenPeriodTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,9 @@ public function testDefaultShow()
"closed_liquid_amount" => $recorded_normal_financial_entry
->debit_amount
->minus($recorded_expense_financial_entry->debit_amount),
"liquid_amount_difference" => $recorded_normal_financial_entry
->debit_amount
->minus($recorded_expense_financial_entry->debit_amount),
"subtotals" => [
[
"cash_flow_activity_id" => $cash_flow_activity->id,
Expand Down Expand Up @@ -406,6 +409,7 @@ public function testUnflowedShow()
"cash_flow_statement" => [
"opened_liquid_amount" => "0",
"closed_liquid_amount" => "0",
"liquid_amount_difference" => "0",
"subtotals" => []
],
"adjusted_trial_balance" => [
Expand Down Expand Up @@ -844,6 +848,7 @@ public function testDefaultCheck()
"cash_flow_statement" => [
"opened_liquid_amount" => "2000",
"closed_liquid_amount" => "2750",
"liquid_amount_difference" => "750",
"subtotals" => [
[
"cash_flow_activity_id" => $cash_flow_activity->id,
Expand Down

0 comments on commit a4727f3

Please sign in to comment.