view Agendas/trunk/src/Agendas.Repositories.Tests/PatrocinadorEventoMemoryTests.cs @ 295:8c742d5ccf67

Leyendo imagen directamente desde el stream
author nelopauselli
date Sat, 18 Feb 2012 12:33:54 -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();
		}
	}
}