diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Agendas/trunk/src/Agendas.Repositories.Tests/EventoCrudMemory.cs	Mon Sep 19 18:18:17 2011 -0300
@@ -0,0 +1,18 @@
+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();
+		}
+
+	}
+}
\ No newline at end of file