Added more unit tests.

This commit is contained in:
2026-07-30 13:36:05 +02:00
parent 882dd7afe1
commit b37ca9222d
3 changed files with 133 additions and 16 deletions
@@ -16,7 +16,7 @@ public static class ApplyFeeHandler
var dest = await query.FindByIdAsync(99999);
if (source == null || dest == null)
{
throw new InvalidOperationException($"Cannot process transfer. Account(s) not found.");
throw new InvalidOperationException("Cannot process transfer. Account(s) not found.");
}
return new FeeContext(source, dest, timeProvider.GetUtcNow());