Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Tests/DateTimeFormattingTests.cs @ 202:a731086c0b28
Se soluciona ticket 174.
Además se agrega detalle del campo Hora y Duración cuando son obligatorios en Resources.
author | alabra |
---|---|
date | Sat, 20 Aug 2011 18:40:36 -0400 |
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"))); } } }