view Agendas/trunk/src/Agendas.Tests/DateTimeFormattingTests.cs @ 298:9bc60d166c8a

Se corrigieron los tests por el cambio de Patrocinador, para que no persista el logo en disco. Se comentó el código de PatrocinadorApiController, que no se utiliza.
author juanjose.montesdeocaarbos
date Sun, 19 Feb 2012 16:00:38 -0300
parents ebce59b45b50
children
line wrap: on
line source

using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.Linq;
using System.Text;
using NUnit.Framework;

namespace AltNetHispano.Agendas.Tests
{
  [TestFixture]
  public class DateTimeFormattingTests
  {
    [Test]
    public void la_fecha_debe_formatearse_en_castellano()
    {
      var fecha = new DateTime(2010, 11, 20, 18, 0, 0);
      Assert.AreEqual("sábado, 20 de noviembre de 2010", fecha.ToString("D", CultureInfo.CreateSpecificCulture("es-ES")));
    }

    [Test]
    public void la_hora_debe_expresarse_en_24hs()
    {
      var fecha = new DateTime(2010, 11, 20, 18, 0, 0);
      Assert.AreEqual("18:00", fecha.ToString("t", CultureInfo.CreateSpecificCulture("es-ES")));
    }
  }

}