From a72de5efb42f58e12decc39030d04df7aa6fb506 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Tue, 10 May 2022 20:06:40 +1000 Subject: [PATCH] Profit and loss: --- .../Export/ProfitAndLossReportTest.php | 54 +++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 tests/Feature/Export/ProfitAndLossReportTest.php diff --git a/tests/Feature/Export/ProfitAndLossReportTest.php b/tests/Feature/Export/ProfitAndLossReportTest.php new file mode 100644 index 0000000000..2cd0c77550 --- /dev/null +++ b/tests/Feature/Export/ProfitAndLossReportTest.php @@ -0,0 +1,54 @@ +withoutMiddleware( + ThrottleRequests::class + ); + + $this->makeTestData(); + + $this->withoutExceptionHandling(); + } + + private function buildReportData() + { + $company = Company::factory()->create([ + 'account_id' => $this->account->id, + ]); + + } + + public function testExportCsv() + { + + } +}