Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Tests/TestBase.cs @ 27:29b8a8893ba3
Mejoras menores en UI
author | nelo@MTEySS.neluz.int |
---|---|
date | Tue, 15 Mar 2011 09:14:52 -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(); } } }