view Agendas/trunk/src/Agendas.Repositories.Tests/PatrocinadorEventoMemoryTests.cs @ 294:0e616662a94b

Added tag v1.1.0 for changeset 2cf7143586fe
author nelopauselli
date Fri, 17 Feb 2012 14:28:05 -0300
parents eeca9ddb330a
children
line wrap: on
line source

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Agendas.Repositories.Tests.Infraestructure;
using AltNetHispano.Agendas.Repositories.Memory;
using NUnit.Framework;

namespace Agendas.Repositories.Tests
{
	[TestFixture]
	public class PatrocinadorEventoMemoryTests : PatrocinadorEventoTests<MemoryInfraestrutureFactory>
	{
		[SetUp]
		public void BorrarRepositorios()
		{
			EventoRepository.Clear();
			PersonaRepository.Clear();
			PatrocinadorRepository.Clear();
		}
	}
}