Mercurial > altnet-hispano
diff Agendas/trunk/src/Agendas.Repositories.Tests/Workflow.cs @ 235:c61954d24c8c
Quitando ponente principal y utilizando siempre la lista de ponentes
author | nelopauselli |
---|---|
date | Tue, 04 Oct 2011 20:42:35 -0300 |
parents | 68b09c30b0d2 |
children | 72a96459f910 |
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Repositories.Tests/Workflow.cs Wed Sep 28 20:02:44 2011 -0300 +++ b/Agendas/trunk/src/Agendas.Repositories.Tests/Workflow.cs Tue Oct 04 20:42:35 2011 -0300 @@ -28,10 +28,11 @@ { using (_requestEmulator.Invoke()) { - var resultado = _agenda.Proponer("SOLID", _testsHelper.GetOrCreatePonente("Jorge"), null, TipoEvento.Van); + var resultado = _agenda.Proponer("SOLID", new[] {_testsHelper.GetOrCreatePonente("Jorge")}, null, TipoEvento.Van); + Console.WriteLine(resultado.Message); Assert.IsTrue(resultado.Succeful); } - + GetId(); } @@ -42,7 +43,7 @@ { var fechaInicio = DateTime.Today.AddDays(5).ToUniversalTime(); var fechaTermino = fechaInicio.AddHours(2); - var resultado = _agenda.Agendar("SOLID", _testsHelper.GetOrCreatePonente("Jorge"), fechaInicio, fechaTermino, null, + var resultado = _agenda.Agendar("SOLID", new[]{ _testsHelper.GetOrCreatePonente("Jorge")}, fechaInicio, fechaTermino, null, TipoEvento.Van); Assert.IsTrue(resultado.Succeful); }