/
softailor
/
gridient
Обзор
Документация
Войти
/
softailor
/
gridient
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
backend/Gridient.Infrastructure.Authentication.Local.Tests/Helpers/TestDataBuilders/AuthUserTestDataBuilder.cs
28 строк
923 B
Jenkins
Auto add
18 фев 2026, 10:19
18 фев 2026, 10:19
1e6c4f8
Код
Авторство
О чём код?
using Gridient.Infrastructure.Authentication.Local.Models; namespace Gridient.Infrastructure.Authentication.Local.Tests.Helpers.TestDataBuilders { public static class AuthUserTestDataBuilder { public static AuthUser CreateAuthUser( int id = 1, string? login = null, string? passwordHash = null, string? email = null, string? displayName = null, DateTime? createdAt = null, DateTime? lastLogin = null) { return new AuthUser { Id = id, Login = login ?? "testuser", PasswordHash = passwordHash ?? "hash", Email = email ?? "test@example.com", DisplayName = displayName ?? "Test User", CreatedAt = createdAt ?? DateTime.UtcNow, LastLogin = lastLogin }; } } }