Exemple #1
0
        public void Integration_GerarApostaAutomaticamente_Corretamente()
        {
            Aposta aposta = new Aposta(new Concurso());

            _service.GerarApostaAutomaticamente(aposta);
            aposta.numerosApostados.Count.Should().Be(6);
        }
Exemple #2
0
 public void Service_Aposta_Deveria_Gerar_Numeros_Da_Aposta_Automaticamente()
 {
     _aposta = ObjectMother.GetApostaSemNumerosApostados();
     _service.GerarApostaAutomaticamente(_aposta);
     _aposta.numerosApostados.Count.Should().Be(6);
 }