Mercurial > altnet-hispano
comparison Agendas/trunk/src/Agendas.Tests/TestBase.cs @ 20:c5a99dde072f
reorganizando tests
author | nelo@MTEySS.neluz.int |
---|---|
date | Mon, 14 Mar 2011 20:59:28 -0300 |
parents | |
children | d6e124e5c9c4 |
comparison
equal
deleted
inserted
replaced
19:74eb4577d447 | 20:c5a99dde072f |
---|---|
1 using Agendas.Repositories.Memory; | |
2 using AltNetHispano.Agendas.Domain; | |
3 using Moq; | |
4 using NUnit.Framework; | |
5 | |
6 namespace AltNetHispano.Agendas.Tests | |
7 { | |
8 public class TestBase | |
9 { | |
10 protected static ISeguridad SeguridadServiceDefault | |
11 { | |
12 get | |
13 { | |
14 var seguridad = new Mock<ISeguridad>(); | |
15 seguridad.Setup(s => s.GetPrincipal()).Returns(SeguridadObjectMother.GetGenericPrincipalAutenticadoSinRoles()); | |
16 return seguridad.Object; | |
17 } | |
18 } | |
19 | |
20 [SetUp] | |
21 public void LimpiarEventos() | |
22 { | |
23 var repository = new EventoRepository(); | |
24 foreach (var evento in repository.GetEventosConFecha()) | |
25 repository.Delete(evento); | |
26 foreach (var evento in repository.GetEventosSinFecha()) | |
27 repository.Delete(evento); | |
28 } | |
29 | |
30 } | |
31 } |