comparison Agendas/trunk/src/Agendas.Repositories.Tests/EventoCrudMemory.cs @ 222:68b09c30b0d2

Separando los test de persistencia en un proyecto aparte
author nelopauselli
date Mon, 19 Sep 2011 18:18:17 -0300
parents Agendas/trunk/src/Agendas.Tests/Cruds/EventoCrudMemoryTests.cs@3639803112c6
children eeca9ddb330a
comparison
equal deleted inserted replaced
221:37ddf81333d3 222:68b09c30b0d2
1 using Agendas.Repositories.Tests.Infraestructure;
2 using AltNetHispano.Agendas.Repositories.Memory;
3 using NUnit.Framework;
4
5 namespace Agendas.Repositories.Tests
6 {
7 [TestFixture]
8 public class EventoCrudMemory : EventoCrud<MemoryInfraestrutureFactory>
9 {
10 [SetUp]
11 public void BorrarRepositorios()
12 {
13 EventoRepository.Clear();
14 PersonaRepository.Clear();
15 }
16
17 }
18 }