Mercurial > altnet-hispano
comparison Agendas/trunk/src/Agendas.Repositories.Tests/PatrocinadorEventoMemoryTests.cs @ 287:eeca9ddb330a
BUG: Los Patrocinadores quedaban asociados a un único evento. Se armó un test que lo demuestra y se modificó el modelo de la base de datos.
author | juanjose.montesdeocaarbos |
---|---|
date | Mon, 02 Jan 2012 19:44:41 -0300 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
286:a8f7c41e3b47 | 287:eeca9ddb330a |
---|---|
1 using System; | |
2 using System.Collections.Generic; | |
3 using System.Linq; | |
4 using System.Text; | |
5 using Agendas.Repositories.Tests.Infraestructure; | |
6 using AltNetHispano.Agendas.Repositories.Memory; | |
7 using NUnit.Framework; | |
8 | |
9 namespace Agendas.Repositories.Tests | |
10 { | |
11 [TestFixture] | |
12 public class PatrocinadorEventoMemoryTests : PatrocinadorEventoTests<MemoryInfraestrutureFactory> | |
13 { | |
14 [SetUp] | |
15 public void BorrarRepositorios() | |
16 { | |
17 EventoRepository.Clear(); | |
18 PersonaRepository.Clear(); | |
19 PatrocinadorRepository.Clear(); | |
20 } | |
21 } | |
22 } |