Mercurial > altnet-hispano
annotate 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 |
rev | line source |
---|---|
222
68b09c30b0d2
Separando los test de persistencia en un proyecto aparte
nelopauselli
parents:
140
diff
changeset
|
1 using Agendas.Repositories.Tests.Infraestructure; |
60 | 2 using AltNetHispano.Agendas.Repositories.Memory; |
3 using NUnit.Framework; | |
4 | |
222
68b09c30b0d2
Separando los test de persistencia en un proyecto aparte
nelopauselli
parents:
140
diff
changeset
|
5 namespace Agendas.Repositories.Tests |
60 | 6 { |
7 [TestFixture] | |
222
68b09c30b0d2
Separando los test de persistencia en un proyecto aparte
nelopauselli
parents:
140
diff
changeset
|
8 public class EventoCrudMemory : EventoCrud<MemoryInfraestrutureFactory> |
60 | 9 { |
63 | 10 [SetUp] |
11 public void BorrarRepositorios() | |
12 { | |
13 EventoRepository.Clear(); | |
94
db4b1e2cae49
Cambio del nombre de la clase Ponente a Persona
Nelo@Kenia.neluz.int
parents:
63
diff
changeset
|
14 PersonaRepository.Clear(); |
63 | 15 } |
16 | |
60 | 17 } |
18 } |