comparison Agendas/trunk/src/Agendas.Tests/Cruds/PatrocinadorCrudMemoryTests.cs @ 200:5346c0500594 deploy pre 1.0

Pasando a estructura de db fija, ya no se crea automáticamente. Se comenta lo referente a Patrocinadores que queda para alguna futura versión. Script para tablas de v1.0
author nelopauselli
date Wed, 17 Aug 2011 17:54:45 -0300
parents 2d1adbaf0373
children
comparison
equal deleted inserted replaced
199:39ce09df76dc 200:5346c0500594
4 using Moq; 4 using Moq;
5 using NUnit.Framework; 5 using NUnit.Framework;
6 6
7 namespace AltNetHispano.Agendas.Tests.Cruds 7 namespace AltNetHispano.Agendas.Tests.Cruds
8 { 8 {
9 [TestFixture] 9 //[TestFixture]
10 public class PatrocinadorCrudMemoryTests 10 //public class PatrocinadorCrudMemoryTests
11 { 11 //{
12 private PatrocinadorCrud _eventoCrud; 12 // private PatrocinadorCrud _eventoCrud;
13 13
14 #region SetUp 14 // #region SetUp
15 15
16 [SetUp] 16 // [SetUp]
17 public void BorrarRepositorios() 17 // public void BorrarRepositorios()
18 { 18 // {
19 PatrocinadorRepository.Clear(); 19 // PatrocinadorRepository.Clear();
20 } 20 // }
21 21
22 [SetUp] 22 // [SetUp]
23 public void SetearUsuario() 23 // public void SetearUsuario()
24 { 24 // {
25 var seguridad = new Mock<ISeguridad>(); 25 // var seguridad = new Mock<ISeguridad>();
26 seguridad.Setup(s => s.GetUserName()).Returns("neluz"); 26 // seguridad.Setup(s => s.GetUserName()).Returns("neluz");
27 IdentityContext.Init(seguridad.Object, new PersonaRepository()); 27 // IdentityContext.Init(seguridad.Object, new PersonaRepository());
28 } 28 // }
29 29
30 [SetUp] 30 // [SetUp]
31 public void CreateCrud() 31 // public void CreateCrud()
32 { 32 // {
33 _eventoCrud = new PatrocinadorCrud(() => new PatrocinadorRepository(), () => new Mock<IDisposable>().Object); 33 // _eventoCrud = new PatrocinadorCrud(() => new PatrocinadorRepository(), () => new Mock<IDisposable>().Object);
34 } 34 // }
35 35
36 #endregion 36 // #endregion
37 37
38 [Test] 38 // [Test]
39 public void Create() 39 // public void Create()
40 { 40 // {
41 _eventoCrud.Create(); 41 // _eventoCrud.Create();
42 } 42 // }
43 43
44 [Test] 44 // [Test]
45 public void Read() 45 // public void Read()
46 { 46 // {
47 _eventoCrud.Read(); 47 // _eventoCrud.Read();
48 } 48 // }
49 49
50 [Test] 50 // [Test]
51 public void Update() 51 // public void Update()
52 { 52 // {
53 _eventoCrud.Update(); 53 // _eventoCrud.Update();
54 } 54 // }
55 55
56 [Test] 56 // [Test]
57 public void Delete() 57 // public void Delete()
58 { 58 // {
59 _eventoCrud.Delete(); 59 // _eventoCrud.Delete();
60 } 60 // }
61 61
62 } 62 //}
63 } 63 }