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

This commit is contained in:
Stevan Freeborn
2026-03-09 04:29:01 -05:00
parent 98d56fefd7
commit 76df36b18f
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();