comparison Agendas/trunk/src/Agendas.Repositories.Tests/PatrocinadorCrudMemoryTests.cs @ 274:72a96459f910

Ticket #123: Patrocinadores de las vans.
author juanjose.montesdeocaarbos
date Wed, 30 Nov 2011 08:56:01 -0300
parents 68b09c30b0d2
children
comparison
equal deleted inserted replaced
273:a7420f05716a 274:72a96459f910
1 namespace Agendas.Repositories.Tests 1 using System;
2 using AltNetHispano.Agendas.Domain;
3 using AltNetHispano.Agendas.Repositories.Memory;
4 using Moq;
5 using NUnit.Framework;
6
7 namespace Agendas.Repositories.Tests
2 { 8 {
3 //[TestFixture] 9 [TestFixture]
4 //public class PatrocinadorCrudMemoryTests 10 public class PatrocinadorCrudMemoryTests
5 //{ 11 {
6 // private PatrocinadorCrud _eventoCrud; 12 private PatrocinadorCrud _eventoCrud;
7 13
8 // #region SetUp 14 #region SetUp
9 15
10 // [SetUp] 16 [SetUp]
11 // public void BorrarRepositorios() 17 public void BorrarRepositorios()
12 // { 18 {
13 // PatrocinadorRepository.Clear(); 19 PatrocinadorRepository.Clear();
14 // } 20 }
15 21
16 // [SetUp] 22 [SetUp]
17 // public void SetearUsuario() 23 public void SetearUsuario()
18 // { 24 {
19 // var seguridad = new Mock<ISeguridad>(); 25 var seguridad = new Mock<ISeguridad>();
20 // seguridad.Setup(s => s.GetUserName()).Returns("neluz"); 26 seguridad.Setup(s => s.GetUserName()).Returns("neluz");
21 // IdentityContext.Init(seguridad.Object, new PersonaRepository()); 27 IdentityContext.Init(seguridad.Object, new PersonaRepository());
22 // } 28 }
23 29
24 // [SetUp] 30 [SetUp]
25 // public void CreateCrud() 31 public void CreateCrud()
26 // { 32 {
27 // _eventoCrud = new PatrocinadorCrud(() => new PatrocinadorRepository(), () => new Mock<IDisposable>().Object); 33 _eventoCrud = new PatrocinadorCrud(() => new PatrocinadorRepository(), () => new Mock<IDisposable>().Object);
28 // } 34 }
29 35
30 // #endregion 36 #endregion
31 37
32 // [Test] 38 [Test]
33 // public void Create() 39 public void Create()
34 // { 40 {
35 // _eventoCrud.Create(); 41 _eventoCrud.Create();
36 // } 42 }
37 43
38 // [Test] 44 [Test]
39 // public void Read() 45 public void Read()
40 // { 46 {
41 // _eventoCrud.Read(); 47 _eventoCrud.Read();
42 // } 48 }
43 49
44 // [Test] 50 [Test]
45 // public void Update() 51 public void Update()
46 // { 52 {
47 // _eventoCrud.Update(); 53 _eventoCrud.Update();
48 // } 54 }
49 55
50 // [Test] 56 [Test]
51 // public void Delete() 57 public void Delete()
52 // { 58 {
53 // _eventoCrud.Delete(); 59 _eventoCrud.Delete();
54 // } 60 }
55 61
56 //} 62 }
57 } 63 }