Mercurial > altnet-hispano
comparison Agendas/trunk/src/Agendas.Tests/PropuestasTests.cs @ 52:7b3a32bbdfa0
corrección de test que no verificaba lo que decía verificar
author | nelopauselli |
---|---|
date | Sat, 14 May 2011 12:17:35 -0300 |
parents | 4a63a73e38e4 |
children | d149bfea3892 |
comparison
equal
deleted
inserted
replaced
51:4a63a73e38e4 | 52:7b3a32bbdfa0 |
---|---|
61 } | 61 } |
62 | 62 |
63 { | 63 { |
64 var van = agenda.GetEventosPropuestos().FirstOrDefault(); | 64 var van = agenda.GetEventosPropuestos().FirstOrDefault(); |
65 Assert.IsNotNull(van); | 65 Assert.IsNotNull(van); |
66 //TODO: creo que nos equivocamos en los parametros que le pasamos según el nombre del test | 66 Assert.Throws<ValidationException>(() => agenda.Publicar(van.Titulo, "Ponente", null)); |
67 Assert.Throws<ValidationException>(() => agenda.Publicar(van.Titulo, string.Empty, van.Fecha)); | |
68 } | 67 } |
69 } | 68 } |
70 | 69 |
71 [Test] | 70 [Test] |
72 public void Intentar_agendar_evento_propuesto_sin_indicar_ponente() | 71 public void Intentar_agendar_evento_propuesto_sin_indicar_ponente() |