Mercurial > altnet-hispano
diff Agendas/trunk/src/Agendas.Tests/AgendarTests.cs @ 140:3639803112c6
Refactoring de la relaciĆ³n entre Evento y Estado
author | nelopauselli |
---|---|
date | Fri, 29 Jul 2011 16:30:53 -0300 |
parents | 62791999ad01 |
children | e6e6bfb1da9e |
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Tests/AgendarTests.cs Thu Jul 28 10:16:09 2011 -0300 +++ b/Agendas/trunk/src/Agendas.Tests/AgendarTests.cs Fri Jul 29 16:30:53 2011 -0300 @@ -216,7 +216,7 @@ var evento = DefaultEventoRepository.GetByState(EventoPropuestoState.GetInstance()).Single(e => e.Titulo == "Html 5"); - Assert.IsInstanceOf(typeof(EventoPropuestoState), evento.GetEstado()); + Assert.IsInstanceOf(typeof(EventoPropuestoState), evento.Estado); Assert.That(evento.GetTrackNews().Count(t => t.Accion == Accion.Proponer) == 1); } @@ -230,7 +230,7 @@ var evento = DefaultEventoRepository.GetActivos().Single(e => e.Titulo == "Html 5"); - Assert.IsInstanceOf(typeof(EventoAgendadoState), evento.GetEstado()); + Assert.IsInstanceOf(typeof(EventoAgendadoState), evento.Estado); Assert.That(evento.GetTrackNews().Count(t => t.Accion == Accion.Agendar) == 1); } @@ -246,9 +246,9 @@ agenda.Cancelar(evento.Id); - Assert.IsInstanceOf(typeof(EventoCanceladoState), evento.GetEstado()); + Assert.IsInstanceOf(typeof(EventoCanceladoState), evento.Estado); Assert.That(evento.GetTrackNews().Count(t => t.Accion == Accion.Cancelar) == 1); - Assert.AreEqual(EventoCanceladoState.GetInstance().GetDescripcion(), evento.Estado); + Assert.AreEqual(EventoCanceladoState.GetInstance(), evento.Estado); } [Test] @@ -264,9 +264,9 @@ agenda.Cancelar(evento.Id); agenda.Descartar(evento.Id); - Assert.IsInstanceOf(typeof(EventoDescartadoState), evento.GetEstado()); + Assert.IsInstanceOf(typeof(EventoDescartadoState), evento.Estado); Assert.That(evento.GetTrackNews().Count(t => t.Accion == Accion.Descartar) == 1); - Assert.AreEqual(EventoDescartadoState.GetInstance().GetDescripcion(), evento.Estado); + Assert.AreEqual(EventoDescartadoState.GetInstance(), evento.Estado); } [Test] @@ -281,7 +281,7 @@ agenda.Confirmar(evento.Id); - Assert.IsInstanceOf(typeof(EventoConfirmadoState), evento.GetEstado()); + Assert.IsInstanceOf(typeof(EventoConfirmadoState), evento.Estado); Assert.That(evento.GetTrackNews().Count(t => t.Accion == Accion.Confirmar) == 1); } @@ -298,7 +298,7 @@ agenda.Confirmar(evento.Id); agenda.Publicar(evento.Id, 0, string.Empty); - Assert.IsInstanceOf(typeof(EventoPublicadoState), evento.GetEstado()); + Assert.IsInstanceOf(typeof(EventoPublicadoState), evento.Estado); Assert.That(evento.GetTrackNews().Count(t => t.Accion == Accion.Publicar) == 1); }