public void Service_Aposta_Deveria_Editar_Aposta() { _aposta = ObjectMother.GetApostaComId(); _apostaRepository .Setup(x => x.Editar(It.IsAny <Aposta>())); _service.Editar(_aposta); _apostaRepository.Verify(x => x.Editar(_aposta)); }
public void Integration_EditarAposta_Corretamente() { _aposta = ObjectMother.GetApostaComId(); Action action = () => _service.Editar(_aposta); action.Should().Throw <UnsupportedOperationException>(); }