0
0
mirror of https://github.com/alex289/CleanArchitecture.git synced 2025-07-12 00:25:05 +00:00
CleanArchitecture/CleanArchitecture.Domain.Tests/CommandHandler/User/LoginUser/LoginUserCommandValidationTests.cs
2023-03-21 11:03:05 +01:00

12 lines
359 B
C#

using CleanArchitecture.Domain.Commands.Users.LoginUser;
namespace CleanArchitecture.Domain.Tests.CommandHandler.User.LoginUser;
public sealed class LoginUserCommandValidationTests :
ValidationTestBase<LoginUserCommand, LoginUserCommandValidation>
{
public LoginUserCommandValidationTests() : base(new LoginUserCommandValidation())
{
}
}