comparison Agendas/trunk/src/Agendas.Tests/Workflows/Workflow.cs @ 109:6bd9be78caa0

Merge
author Nelo@Kenia.neluz.int
date Tue, 07 Jun 2011 23:21:07 -0300
parents 80c22175c9b5
children 6f1041301797
comparison
equal deleted inserted replaced
108:786a90e26c9b 109:6bd9be78caa0
15 } 15 }
16 16
17 public void Proponer() 17 public void Proponer()
18 { 18 {
19 19
20 var resultado = _agenda.Proponer("SOLID", "Jorge", null); 20 var resultado = _agenda.Proponer("SOLID", "Jorge", null, TipoEvento.Van);
21 Assert.IsTrue(resultado.Succeful); 21 Assert.IsTrue(resultado.Succeful);
22 } 22 }
23 23
24 24
25 public void Agendar() 25 public void Agendar()
26 { 26 {
27 var resultado = _agenda.Agendar("SOLID", "Jorge", DateTime.Today.AddDays(5), null); 27 var resultado = _agenda.Agendar("SOLID", "Jorge", DateTime.Today.AddDays(5), null, TipoEvento.Van);
28 Assert.IsTrue(resultado.Succeful); 28 Assert.IsTrue(resultado.Succeful);
29 } 29 }
30 30
31 public void Confirmar(Guid eventoId) 31 public void Confirmar(Guid eventoId)
32 { 32 {
34 Assert.IsTrue(resultado.Succeful); 34 Assert.IsTrue(resultado.Succeful);
35 } 35 }
36 36
37 public void Publicar(Guid eventoId) 37 public void Publicar(Guid eventoId)
38 { 38 {
39 var resultado = _agenda.Publicar(eventoId); 39 var resultado = _agenda.Publicar(eventoId, 0, string.Empty);
40 Assert.IsTrue(resultado.Succeful); 40 Assert.IsTrue(resultado.Succeful);
41 } 41 }
42 } 42 }
43 } 43 }