Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Repositories.Tests/EventoCrudMemory.cs @ 244:31fb96912d37
Ticket 162: Publicaciones con Nro Orden repetido.
author | juanjose.montesdeocaarbos |
---|---|
date | Thu, 06 Oct 2011 09:09:37 -0300 |
parents | 68b09c30b0d2 |
children | eeca9ddb330a |
line wrap: on
line source
using Agendas.Repositories.Tests.Infraestructure; using AltNetHispano.Agendas.Repositories.Memory; using NUnit.Framework; namespace Agendas.Repositories.Tests { [TestFixture] public class EventoCrudMemory : EventoCrud<MemoryInfraestrutureFactory> { [SetUp] public void BorrarRepositorios() { EventoRepository.Clear(); PersonaRepository.Clear(); } } }