mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-07-12 00:25:05 +00:00
12 lines
359 B
C#
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())
|
|
{
|
|
}
|
|
}
|