diff Agendas/trunk/src/Agendas.Tests/AgendarTests.cs @ 103:23325dddddcc

Persistencia del estado de los eventos
author jorge.rowies
date Sun, 05 Jun 2011 13:06:23 -0300
parents 92c5a12015f3
children 1d820f17fc75
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Tests/AgendarTests.cs	Sun Jun 05 11:57:34 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Tests/AgendarTests.cs	Sun Jun 05 13:06:23 2011 -0300
@@ -213,7 +213,7 @@
 
       var evento = DefaultEventoRepository.GetEventosSinFecha().Single(e => e.Titulo == "Html 5");
 
-      Assert.IsInstanceOf(typeof(EventoPropuestoState), evento.Estado);
+      Assert.IsInstanceOf(typeof(EventoPropuestoState), evento.GetEstado());
       Assert.That(evento.GetTrackNews().Count(t => t.Accion == Accion.Proponer) == 1);
     }
 
@@ -227,7 +227,7 @@
 
       var evento = DefaultEventoRepository.GetEventosConFecha().Single(e => e.Titulo == "Html 5");
 
-      Assert.IsInstanceOf(typeof(EventoAgendadoState), evento.Estado);
+      Assert.IsInstanceOf(typeof(EventoAgendadoState), evento.GetEstado());
       Assert.That(evento.GetTrackNews().Count(t => t.Accion == Accion.Agendar) == 1);
     }
 
@@ -243,7 +243,7 @@
 
       agenda.Confirmar(evento.Id);
 
-      Assert.IsInstanceOf(typeof(EventoConfirmadoState), evento.Estado);
+      Assert.IsInstanceOf(typeof(EventoConfirmadoState), evento.GetEstado());
       Assert.That(evento.GetTrackNews().Count(t => t.Accion == Accion.Confirmar) == 1);
     }
 
@@ -260,7 +260,7 @@
       agenda.Confirmar(evento.Id);
       agenda.Publicar(evento.Id);
 
-      Assert.IsInstanceOf(typeof(EventoPublicadoState), evento.Estado);
+      Assert.IsInstanceOf(typeof(EventoPublicadoState), evento.GetEstado());
       Assert.That(evento.GetTrackNews().Count(t => t.Accion == Accion.Publicar) == 1);
     }