(credit, debit, balance *big.Int, indicator string)
| 50 | } |
| 51 | |
| 52 | func getBalanceMock(credit, debit, balance *big.Int, indicator string) *model.Balance { |
| 53 | return &model.Balance{CreditBalance: credit, DebitBalance: debit, Balance: balance, Indicator: indicator} |
| 54 | } |
| 55 | |
| 56 | func getTransactionMock(amount float64, overdraft bool) model.Transaction { |
| 57 | transaction := model.Transaction{TransactionID: gofakeit.UUID(), Amount: amount, AllowOverdraft: overdraft, Reference: gofakeit.UUID()} |
no outgoing calls
no test coverage detected