test: implement BDD step definitions for token validation and confirmation

This commit is contained in:
Aaron Po
2026-02-28 23:29:23 -05:00
parent c5571fcf47
commit 769c717405
11 changed files with 463 additions and 37 deletions

View File

@@ -134,10 +134,10 @@ public class AuthRepository(ISqlConnectionFactory connectionFactory)
await using var connection = await CreateConnection();
await using var command = connection.CreateCommand();
command.CommandText = "USP_ConfirmUserAccount";
command.CommandText = "USP_CreateUserVerification";
command.CommandType = CommandType.StoredProcedure;
AddParameter(command, "@UserAccountId", userAccountId);
AddParameter(command, "@UserAccountID_", userAccountId);
await command.ExecuteNonQueryAsync();