comparison Agendas/trunk/src/Agendas.Web.Tests/Controllers/EventoControllerTests.cs @ 233:32e4e0e7a140

Probando de armar tests de Agendas.Web
author juanjose.montesdeocaarbos
date Tue, 04 Oct 2011 20:34:46 -0300
parents
children 51faeabfb9d9 a7daa939ef0c
comparison
equal deleted inserted replaced
232:806fd94727ce 233:32e4e0e7a140
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using AltNetHispano.Agendas.Domain;
6 using AltNetHispano.Agendas.Web.Controllers;
7 using AltNetHispano.Agendas.Web.Models;
8 using NUnit.Framework;
9
10 namespace Agendas.Web.Tests.Controllers
11 {
12 [TestFixture]
13 public class EventoControllerTests
14 {
15 [Test]
16 [Ignore]
17 public void Publicar_Evento()
18 {
19 var eventoController = new EventoController();
20
21 var eventoNew = new EventoNewModel
22 {
23 Duracion = new TimeSpan(0, 0, 0),
24 Fecha = DateTime.Today.AddDays(5),
25 Hora = new TimeSpan(18, 0, 0),
26 Ponente = new Guid(),
27 TipoEvento = (int)TipoEvento.Van,
28 Titulo = "Título 1"
29 };
30
31 var resultNuevo = eventoController.Nuevo(eventoNew);
32
33 //var eventoPublicar = new EventoPublicarModel
34 // {
35 // NroOrden = 1,
36 // Titulo = "Título 1",
37 // UrlWiki = "http://www.altnethistpano.org/vans/titulo-1.ashx",
38 // DuracionReal = new TimeSpan()
39 // };
40
41 //var resultPublicar = eventoController.Publicar(eventoPublicar);
42 }
43 }
44 }