public void GetDeveRetornarTodasOsPlanos() { var service = new ServicePlano(); var resultado = service.ObterPlanos(); Assert.IsNotNull(resultado); }
public void PutDeveFalharSeIdPlanoDiferente() { var valor = int.MaxValue; var service = new ServicePlano(); var resultado = service.AtualizarPlano(valor); Assert.IsInstanceOfType(resultado, typeof(BadRequestResult)); }
public void DeleteDeveFalharSeIdPlanoDiferente() { var valor = int.MaxValue; var service = new ServicePlano(); var resultado = service.RemoverPlano(valor); Assert.IsInstanceOfType(resultado, typeof(NotFoundResult)); }