comparison Agendas/trunk/src/Agendas.Repositories.Tests/PersonaCrudNhTests.cs @ 222:68b09c30b0d2

Separando los test de persistencia en un proyecto aparte
author nelopauselli
date Mon, 19 Sep 2011 18:18:17 -0300
parents
children
comparison
equal deleted inserted replaced
221:37ddf81333d3 222:68b09c30b0d2
1 using Agendas.Repositories.Tests.Infraestructure;
2 using NUnit.Framework;
3
4 namespace Agendas.Repositories.Tests
5 {
6 [TestFixture]
7 public class PersonaCrudNhTests : PersonaCrud<NhInfraestrutureFactory>
8 {
9 [SetUp]
10 public void BorrarRepositorios()
11 {
12 NhHelperTest.CleanDb();
13 }
14 }
15 }