Mercurial > altnet-hispano
comparison Agendas/trunk/src/Agendas.Tests/TestBase.cs @ 138:62791999ad01
Agregando relación entre Evento y Patrocinador
author | nelopauselli |
---|---|
date | Thu, 28 Jul 2011 10:13:28 -0300 |
parents | 7a2eeb9e9bf9 |
children | e6e6bfb1da9e |
comparison
equal
deleted
inserted
replaced
137:2d1adbaf0373 | 138:62791999ad01 |
---|---|
1 using AltNetHispano.Agendas.Domain; | 1 using AltNetHispano.Agendas.Domain; |
2 using AltNetHispano.Agendas.Domain.Repositories; | 2 using AltNetHispano.Agendas.Domain.Repositories; |
3 using AltNetHispano.Agendas.Domain.Services; | |
4 using AltNetHispano.Agendas.Repositories.Memory; | 3 using AltNetHispano.Agendas.Repositories.Memory; |
5 using Moq; | 4 using Moq; |
6 using NUnit.Framework; | 5 using NUnit.Framework; |
7 | 6 |
8 namespace AltNetHispano.Agendas.Tests | 7 namespace AltNetHispano.Agendas.Tests |
17 protected static IPersonaRepository DefaultPersonaRepository | 16 protected static IPersonaRepository DefaultPersonaRepository |
18 { | 17 { |
19 get { return new PersonaRepository(); } | 18 get { return new PersonaRepository(); } |
20 } | 19 } |
21 | 20 |
21 protected static IPatrocinadorRepository DefaultPatrocinadorRepository | |
22 { | |
23 get { return new PatrocinadorRepository(); } | |
24 } | |
25 | |
26 | |
22 [SetUp] | 27 [SetUp] |
23 public void LimpiarEventos() | 28 public void LimpiarEventos() |
24 { | 29 { |
25 EventoRepository.Clear(); | 30 EventoRepository.Clear(); |
31 } | |
32 | |
33 [SetUp] | |
34 public void PatrocinadoresEventos() | |
35 { | |
36 PatrocinadorRepository.Clear(); | |
26 } | 37 } |
27 | 38 |
28 [SetUp] | 39 [SetUp] |
29 public void LimpiarPonentes() | 40 public void LimpiarPonentes() |
30 { | 41 { |