diff Agendas/trunk/src/Agendas.Tests/PonentesTests.cs @ 75:96d7609f2e08

Agendar evento propuesto
author nelopauselli
date Mon, 23 May 2011 20:43:01 -0300
parents bc46e7426c80
children 26d0513a8410
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Tests/PonentesTests.cs	Mon May 23 20:13:37 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Tests/PonentesTests.cs	Mon May 23 20:43:01 2011 -0300
@@ -24,7 +24,7 @@
 			agenda.Agendar("Conform - Parte 2", "Fabio Maulo", new DateTime(2011, 3, 5),
 				urlInvitacion);
 
-			var eventos = agenda.GetEventosPublicados();
+			var eventos = agenda.GetEventosAgendados();
 			Assert.AreEqual(2, eventos.Count);
 
 			publicador.Verify(p => p.Publicar(It.IsAny<Evento>()), Times.Exactly(2));
@@ -53,7 +53,7 @@
 
 			agenda.Agendar("Audit (parallel model) con NHibernate 3", "Fabio Maulo", new DateTime(2011, 2, 26), urlInvitacion);
 
-			Assert.AreEqual(1, agenda.GetEventosPublicados().Count);
+			Assert.AreEqual(1, agenda.GetEventosAgendados().Count);
 
 			publicador.Verify(p => p.Publicar(It.IsAny<Evento>()), Times.Exactly(1));
 
@@ -76,7 +76,7 @@
 			agenda.Agendar("Audit (parallel model) con NHibernate 3", "Fabio Maulo", new DateTime(2011, 2, 26),
 				urlInvitacion);
 
-			Assert.AreEqual(1, agenda.GetEventosPublicados().Count);
+			Assert.AreEqual(1, agenda.GetEventosAgendados().Count);
 
 			publicador.Verify(p => p.Publicar(It.IsAny<Evento>()), Times.Exactly(1));
 
@@ -93,7 +93,7 @@
 			const string titulo = "Audit (parallel model) con NHibernate 3";
 			Guid eventoId;
 
-			agenda.Proponer(titulo, "Fabio");
+			agenda.Proponer(titulo, "Fabio", urlInvitacion);
 			Ponente ponente;
 			{
 				var eventos = agenda.GetEventosPropuestos();
@@ -106,7 +106,7 @@
 				ponente = evento.Ponente;
 			}
 
-			agenda.ModificarPropuesta(eventoId, titulo, null);
+			agenda.ModificarPropuesta(eventoId, titulo, null, urlInvitacion);
 			{
 				var eventos = agenda.GetEventosPropuestos();
 				Assert.AreEqual(1, eventos.Count);
@@ -126,7 +126,7 @@
 			const string titulo = "Audit (parallel model) con NHibernate 3";
 			Guid eventoId;
 
-			agenda.Proponer(titulo, "Fabio");
+			agenda.Proponer(titulo, "Fabio", urlInvitacion);
 			Ponente ponente1;
 			{
 				var eventos = agenda.GetEventosPropuestos();
@@ -139,7 +139,7 @@
 				ponente1 = evento.Ponente;
 			}
 
-			agenda.ModificarPropuesta(eventoId, titulo, "José");
+			agenda.ModificarPropuesta(eventoId, titulo, "José", urlInvitacion);
 			Ponente ponente2;
 			{
 				var eventos = agenda.GetEventosPropuestos();