public UsuarioAppTest()
 {
     var endereco = new Endereco("rua teste", "complemento teste", "numero teste", "bairro teste", "cidade teste", Uf.SP, new Cep("06400-000"));
     _usuario = new Usuario("loginTeste1", new Cpf("356.354.274-05"), new Email("*****@*****.**"), "senhaTeste",
         "senhaTeste", endereco);
     _usuarioRepository = new Mock<IUsuarioRepository>();
 }
        public static void Seed(EfDbContext context)
        {
            var endereco = new Endereco("Rua teste", "complemento teste", "numero teste", "bairroteste", "cidadeteste",
                Uf.SP, new Cep("06414-110"));

            context.Usuarios.AddOrUpdate(x => x.Login,
                new Usuario("adminMaster", new Cpf("40914294830"), new Email("*****@*****.**"), "testeteste", "testeteste", endereco));
        }
 public Usuario(string login, Cpf cpf, Email email, string senha, string senhaConfirmacao, Endereco endereco)
 {
     SetLogin(login);
     SetCpf(cpf);
     SetEmail(email);
     SetSenha(senha, senhaConfirmacao);
     Endereco = endereco;
     DtInclusao = DateTime.Now;
 }
 public UsuarioTests()
 {
     Cpf = new Cpf("40914294830");
     Email = new Email("*****@*****.**");
     Login = "******";
     Senha = "123456";
     SenhaConfirmacao = "123456";
     Endereco = new Endereco("rua teste", "complemento teste", "numero teste", "bairro teste", "cidade teste",
         Uf.SP, new Cep("06400-000"));
     Usuario = new Usuario(Login, Cpf, Email, Senha, SenhaConfirmacao, Endereco);
 }