diff 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
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Tests/Cruds/PatrocinadorCrudMemoryTests.cs	Mon Aug 15 20:00:02 2011 -0400
+++ b/Agendas/trunk/src/Agendas.Tests/Cruds/PatrocinadorCrudMemoryTests.cs	Wed Aug 17 17:54:45 2011 -0300
@@ -6,58 +6,58 @@
 
 namespace AltNetHispano.Agendas.Tests.Cruds
 {
-	[TestFixture]
-	public class PatrocinadorCrudMemoryTests
-	{
-		private PatrocinadorCrud _eventoCrud;
+	//[TestFixture]
+	//public class PatrocinadorCrudMemoryTests
+	//{
+	//    private PatrocinadorCrud _eventoCrud;
 
-		#region SetUp
+	//    #region SetUp
 
-		[SetUp]
-		public void BorrarRepositorios()
-		{
-			PatrocinadorRepository.Clear();
-		}
+	//    [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 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 CreateCrud()
+	//    {
+	//        _eventoCrud = new PatrocinadorCrud(() => new PatrocinadorRepository(), () => new Mock<IDisposable>().Object);
+	//    }
 
-		#endregion
+	//    #endregion
 
-		[Test]
-		public void Create()
-		{
-			_eventoCrud.Create();
-		}
+	//    [Test]
+	//    public void Create()
+	//    {
+	//        _eventoCrud.Create();
+	//    }
 
-		[Test]
-		public void Read()
-		{
-			_eventoCrud.Read();
-		}
+	//    [Test]
+	//    public void Read()
+	//    {
+	//        _eventoCrud.Read();
+	//    }
 
-		[Test]
-		public void Update()
-		{
-			_eventoCrud.Update();
-		}
+	//    [Test]
+	//    public void Update()
+	//    {
+	//        _eventoCrud.Update();
+	//    }
 
-		[Test]
-		public void Delete()
-		{
-			_eventoCrud.Delete();
-		}
+	//    [Test]
+	//    public void Delete()
+	//    {
+	//        _eventoCrud.Delete();
+	//    }
 
-	}
+	//}
 }
\ No newline at end of file