20
|
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 } |