diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Agendas/trunk/src/Agendas.Repositories.Tests/PatrocinadorCrudMemoryTests.cs	Mon Sep 19 18:18:17 2011 -0300
@@ -0,0 +1,57 @@
+namespace Agendas.Repositories.Tests
+{
+	//[TestFixture]
+	//public class PatrocinadorCrudMemoryTests
+	//{
+	//    private PatrocinadorCrud _eventoCrud;
+
+	//    #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);
+	//    }
+
+	//    #endregion
+
+	//    [Test]
+	//    public void Create()
+	//    {
+	//        _eventoCrud.Create();
+	//    }
+
+	//    [Test]
+	//    public void Read()
+	//    {
+	//        _eventoCrud.Read();
+	//    }
+
+	//    [Test]
+	//    public void Update()
+	//    {
+	//        _eventoCrud.Update();
+	//    }
+
+	//    [Test]
+	//    public void Delete()
+	//    {
+	//        _eventoCrud.Delete();
+	//    }
+
+	//}
+}
\ No newline at end of file