| 1234567891011121314151617 |
- <?php
- namespace Tests\Unit;
- use App\Services\Agent\AgentReportService;
- use PHPUnit\Framework\TestCase;
- class AgentReportFormulaTest extends TestCase
- {
- public function test_company_profit_uses_cash_flow_formula_and_excludes_manual_adjustments(): void
- {
- $service = new AgentReportService();
- $this->assertSame('39600.0000', $service->companyProfit('50000', '10000', '300', '100'));
- $this->assertSame('-1100.0000', $service->companyProfit('0', '1000', '50', '50'));
- }
- }
|