feat: implement transaction handling and add integration tests for Plaid transaction handlers
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
namespace FiscalOS.Infra.Tests.Unit;
|
||||
|
||||
public class PlaidTransactionSyncerTests
|
||||
{
|
||||
private readonly Mock<ILogger<PlaidTransactionSyncer>> _mockSyncer = new();
|
||||
private
|
||||
private readonly PlaidTransactionSyncer _sut;
|
||||
|
||||
public PlaidTransactionSyncer()
|
||||
{
|
||||
_sut = PlaidTransactionSyncer.From();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user