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

Separando los test de persistencia en un proyecto aparte
author nelopauselli
date Mon, 19 Sep 2011 18:18:17 -0300
parents Agendas/trunk/src/Agendas.Tests/Cruds/PatrocinadorCrudNhTests.cs@5346c0500594
children 72a96459f910
comparison
equal deleted inserted replaced
221:37ddf81333d3 222:68b09c30b0d2
1 namespace Agendas.Repositories.Tests
2 {
3 //[TestFixture]
4 //public class PatrocinadorCrudNhTests
5 //{
6 // private PatrocinadorCrud _patrocinadorCrud;
7
8 // #region SetUp
9
10 // [SetUp]
11 // public void BorrarRepositorios()
12 // {
13 // NhHelperTest.CleanDb();
14 // }
15
16 // [SetUp]
17 // public void SetearUsuario()
18 // {
19 // var seguridad = new Mock<ISeguridad>();
20 // seguridad.Setup(s => s.GetUserName()).Returns("neluz");
21 // IdentityContext.Init(seguridad.Object, new PersonaRepository(NhHelper.GetSessionFactory()));
22 // }
23
24 // [SetUp]
25 // public void CreateCrud()
26 // {
27 // ISessionFactory sessionFactory = NhHelper.GetSessionFactory();
28 // _patrocinadorCrud = new PatrocinadorCrud(() => new PatrocinadorRepository(sessionFactory), () => new RequestEmulator(sessionFactory));
29 // }
30
31 // #endregion
32
33 // [Test]
34 // public void Create()
35 // {
36 // _patrocinadorCrud.Create();
37 // }
38
39 // [Test]
40 // public void Read()
41 // {
42 // _patrocinadorCrud.Read();
43 // }
44
45 // [Test]
46 // public void Update()
47 // {
48 // _patrocinadorCrud.Update();
49 // }
50
51 // [Test]
52 // public void Delete()
53 // {
54 // _patrocinadorCrud.Delete();
55 // }
56
57 //}
58 }