diff 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
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Repositories.Tests/PatrocinadorCrudMemoryTests.cs	Tue Nov 29 07:56:23 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Repositories.Tests/PatrocinadorCrudMemoryTests.cs	Wed Nov 30 08:56:01 2011 -0300
@@ -1,57 +1,63 @@
-namespace Agendas.Repositories.Tests
+using System;
+using AltNetHispano.Agendas.Domain;
+using AltNetHispano.Agendas.Repositories.Memory;
+using Moq;
+using NUnit.Framework;
+
+namespace Agendas.Repositories.Tests
 {
-	//[TestFixture]
-	//public class PatrocinadorCrudMemoryTests
-	//{
-	//    private PatrocinadorCrud _eventoCrud;
-
-	//    #region SetUp
+	[TestFixture]
+	public class PatrocinadorCrudMemoryTests
+	{
+		private PatrocinadorCrud _eventoCrud;
 
-	//    [SetUp]
-	//    public void BorrarRepositorios()
-	//    {
-	//        PatrocinadorRepository.Clear();
-	//    }
+		#region SetUp
+
+		[SetUp]
+		public void BorrarRepositorios()
+		{
+			PatrocinadorRepository.Clear();
+		}
 
-	//    [SetUp]
-	//    public void SetearUsuario()
-	//    {
-	//        var seguridad = new Mock<ISeguridad>();
-	//        seguridad.Setup(s => s.GetUserName()).Returns("neluz");
-	//        IdentityContext.Init(seguridad.Object, new PersonaRepository());
-	//    }
-
-	//    [SetUp]
-	//    public void CreateCrud()
-	//    {
-	//        _eventoCrud = new PatrocinadorCrud(() => new PatrocinadorRepository(), () => new Mock<IDisposable>().Object);
-	//    }
+		[SetUp]
+		public void SetearUsuario()
+		{
+			var seguridad = new Mock<ISeguridad>();
+			seguridad.Setup(s => s.GetUserName()).Returns("neluz");
+			IdentityContext.Init(seguridad.Object, new PersonaRepository());
+		}
 
-	//    #endregion
+		[SetUp]
+		public void CreateCrud()
+		{
+			_eventoCrud = new PatrocinadorCrud(() => new PatrocinadorRepository(), () => new Mock<IDisposable>().Object);
+		}
 
-	//    [Test]
-	//    public void Create()
-	//    {
-	//        _eventoCrud.Create();
-	//    }
+		#endregion
 
-	//    [Test]
-	//    public void Read()
-	//    {
-	//        _eventoCrud.Read();
-	//    }
+		[Test]
+		public void Create()
+		{
+			_eventoCrud.Create();
+		}
 
-	//    [Test]
-	//    public void Update()
-	//    {
-	//        _eventoCrud.Update();
-	//    }
+		[Test]
+		public void Read()
+		{
+			_eventoCrud.Read();
+		}
 
-	//    [Test]
-	//    public void Delete()
-	//    {
-	//        _eventoCrud.Delete();
-	//    }
+		[Test]
+		public void Update()
+		{
+			_eventoCrud.Update();
+		}
 
-	//}
+		[Test]
+		public void Delete()
+		{
+			_eventoCrud.Delete();
+		}
+
+	}
 }
\ No newline at end of file