Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Tests/TestBase.cs @ 26:71b02443450a
UI de Propuestas de VANs
author | nelo@MTEySS.neluz.int |
---|---|
date | Tue, 15 Mar 2011 08:45:00 -0300 |
parents | 41b283d27e3e |
children | 475be11edf56 |
line wrap: on
line source
using Agendas.Repositories.Memory; using AltNetHispano.Agendas.Domain; using AltNetHispano.Agendas.Domain.Repositories; 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(); } } }