public void ComoAtendenteQueroInformaroNoAgendamentoOCID() { //Arrange //Arrange Agendamento agendamento = (new FabricaDeAgendamento()).InformarAtendente("12345", "Joao").InformarMedico("1234", "Fabio").Criar(); CID cid = new CID("A00 - Cólera"); //Act agendamento.InformarCID(cid); //Assert Assert.IsTrue(agendamento.CID.Descricao == "A00 - Cólera"); }
public void ComoAtendenteQueroInformaroNoAgendamentoOCID() { //Arrange //Arrange Medico medico = new Medico("1234", "Mario Peres"); Atendente atendente = new Atendente("000.000.000-10", "Victor Cleber"); Agendamento agendamento = new Agendamento(atendente, medico); CID cid = new CID("A00 - Cólera"); //Act agendamento.InformarCID(cid); //Assert Assert.IsTrue(agendamento.CID.Descricao == "A00 - Cólera"); }
public void InformarCID(CID cid) { CID = cid; }