tests(infra.tests): enhance AccountBuilder with metadata handling and expand PlaidTransactionSyncerTests

This commit is contained in:
Stevan Freeborn
2026-03-08 16:14:51 -05:00
parent 1a4f7fac8d
commit 1c0fdc205e
3 changed files with 300 additions and 0 deletions
@@ -29,6 +29,12 @@ internal sealed class AccountBuilder
return this;
}
public AccountBuilder WithMetadata(AccountMetadata metadata)
{
_metadata = metadata;
return this;
}
public AccountBuilder WithTransaction(Action<TransactionBuilder>? action = null)
{
var tb = TransactionBuilder.Create();