Mercurial > altnet-hispano
comparison Agendas/trunk/src/Agendas.Repositories.Tests/PatrocinadorCrudMemoryTests.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/PatrocinadorCrudMemoryTests.cs@5346c0500594 |
children | 72a96459f910 |
comparison
equal
deleted
inserted
replaced
221:37ddf81333d3 | 222:68b09c30b0d2 |
---|---|
1 namespace Agendas.Repositories.Tests | |
2 { | |
3 //[TestFixture] | |
4 //public class PatrocinadorCrudMemoryTests | |
5 //{ | |
6 // private PatrocinadorCrud _eventoCrud; | |
7 | |
8 // #region SetUp | |
9 | |
10 // [SetUp] | |
11 // public void BorrarRepositorios() | |
12 // { | |
13 // PatrocinadorRepository.Clear(); | |
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()); | |
22 // } | |
23 | |
24 // [SetUp] | |
25 // public void CreateCrud() | |
26 // { | |
27 // _eventoCrud = new PatrocinadorCrud(() => new PatrocinadorRepository(), () => new Mock<IDisposable>().Object); | |
28 // } | |
29 | |
30 // #endregion | |
31 | |
32 // [Test] | |
33 // public void Create() | |
34 // { | |
35 // _eventoCrud.Create(); | |
36 // } | |
37 | |
38 // [Test] | |
39 // public void Read() | |
40 // { | |
41 // _eventoCrud.Read(); | |
42 // } | |
43 | |
44 // [Test] | |
45 // public void Update() | |
46 // { | |
47 // _eventoCrud.Update(); | |
48 // } | |
49 | |
50 // [Test] | |
51 // public void Delete() | |
52 // { | |
53 // _eventoCrud.Delete(); | |
54 // } | |
55 | |
56 //} | |
57 } |