Mercurial > altnet-hispano
diff Agendas/trunk/src/Agendas.Tests/PropuestasTests.cs @ 75:96d7609f2e08
Agendar evento propuesto
author | nelopauselli |
---|---|
date | Mon, 23 May 2011 20:43:01 -0300 |
parents | bc46e7426c80 |
children | 8df9db937434 |
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Tests/PropuestasTests.cs Mon May 23 20:13:37 2011 -0300 +++ b/Agendas/trunk/src/Agendas.Tests/PropuestasTests.cs Mon May 23 20:43:01 2011 -0300 @@ -19,16 +19,16 @@ { var agenda = new Agenda(null, null, DefaultEventoRepository, DefaultPonenteRepository); - agenda.Proponer("Van", null); + agenda.Proponer("Van", null, urlInvitacion); { IList<Evento> eventosPropuestos = agenda.GetEventosPropuestos(); - IList<Evento> eventosPublicados = agenda.GetEventosPublicados(); + IList<Evento> eventosPublicados = agenda.GetEventosAgendados(); Assert.AreEqual(1, eventosPropuestos.Count); Assert.AreEqual(0, eventosPublicados.Count); var evento = eventosPropuestos.FirstOrDefault(); - agenda.ModificarPropuesta(evento.Id, "Van 2", "otro ponente"); + agenda.ModificarPropuesta(evento.Id, "Van 2", "otro ponente", urlInvitacion); eventosPropuestos = agenda.GetEventosPropuestos(); Assert.AreEqual(1, eventosPropuestos.Count); @@ -42,7 +42,7 @@ Assert.IsTrue(r.Succeful); { IList<Evento> eventosPropuestos = agenda.GetEventosPropuestos(); - IList<Evento> eventosPublicados = agenda.GetEventosPublicados(); + IList<Evento> eventosPublicados = agenda.GetEventosAgendados(); Assert.AreEqual(0, eventosPropuestos.Count); Assert.AreEqual(1, eventosPublicados.Count); @@ -55,7 +55,7 @@ var agenda = new Agenda(null, null, DefaultEventoRepository, DefaultPonenteRepository); { - agenda.Proponer("Van propuesta", null); + agenda.Proponer("Van propuesta", null, urlInvitacion); } { @@ -73,7 +73,7 @@ var agenda = new Agenda(null, null, DefaultEventoRepository, DefaultPonenteRepository); { - agenda.Proponer("Van propuesta", null); + agenda.Proponer("Van propuesta", null, urlInvitacion); } { @@ -104,7 +104,7 @@ var agenda = new Agenda(null, null, repository.Object, DefaultPonenteRepository); - var r = agenda.Proponer(string.Empty, null); + var r = agenda.Proponer(string.Empty, null, urlInvitacion); Assert.IsFalse(r.Succeful); repository.Verify(p => p.Save(It.IsAny<Evento>()), Times.Exactly(0)); @@ -117,14 +117,14 @@ SetCurrentUser(null); - Assert.Throws<UsuarioNoAutenticadoException>(() => agenda.Proponer("Inmortalidad de la meduza.", null)); + Assert.Throws<UsuarioNoAutenticadoException>(() => agenda.Proponer("Inmortalidad de la meduza.", null, urlInvitacion)); } [Test] public void Proponer_evento_correctamente() { var agenda = new Agenda(null, null, DefaultEventoRepository, DefaultPonenteRepository); - agenda.Proponer("Van propuesta", null); + agenda.Proponer("Van propuesta", null, urlInvitacion); IList<Evento> eventosPropuestos = agenda.GetEventosPropuestos(); Assert.IsNotNull(eventosPropuestos); @@ -137,13 +137,13 @@ { var agenda = new Agenda(null, null, DefaultEventoRepository, DefaultPonenteRepository); - agenda.Proponer("Van propuesta", null); + agenda.Proponer("Van propuesta", null, urlInvitacion); var r = agenda.Agendar("Van publicada", "jjmontes", DateTime.Now, urlInvitacion); Assert.IsTrue(r.Succeful); IList<Evento> eventosPropuestos = agenda.GetEventosPropuestos(); - IList<Evento> eventosPublicados = agenda.GetEventosPublicados(); + IList<Evento> eventosPublicados = agenda.GetEventosAgendados(); Assert.AreEqual(1, eventosPropuestos.Count); Assert.AreEqual(1, eventosPublicados.Count);