Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Tests/TestBase.cs @ 39:e548379cc314
track de cambios en evento
author | nelo@MTEySS.neluz.int |
---|---|
date | Fri, 18 Mar 2011 00:10:21 -0300 |
parents | 475be11edf56 |
children | 3ebe89c88caa |
line wrap: on
line source
using AltNetHispano.Agendas.Domain; using AltNetHispano.Agendas.Domain.Repositories; using AltNetHispano.Agendas.Repositories.Memory; using Moq; using NUnit.Framework; namespace AltNetHispano.Agendas.Tests { public class TestBase { protected static ISeguridad SeguridadServiceDefault { get { var seguridad = new Mock<ISeguridad>(); seguridad.Setup(s => s.GetPrincipal()).Returns(SeguridadObjectMother.GetGenericPrincipalAutenticadoSinRoles()); return seguridad.Object; } } protected static IEventoRepository DefaultEventoRepository { get { return new EventoRepository(); } } protected static IPonenteRepository DefaultPonenteRepository { get { return new PonenteRepository(); } } [SetUp] public void LimpiarEventos() { EventoRepository.Clear(); } [SetUp] public void LimpiarPonentes() { PonenteRepository.Clear(); } } }