使用 string.Format 和 UnitTest 日期

发布于 2024-12-08 22:20:27 字数 647 浏览 0 评论 0原文

日期和格式对我来说一直是一场噩梦。 最近,我做了很多写入文件的工作,其中日期必须转换为各种格式的字符串(取决于客户端)。

我想创建一个可以整合所有内容的单元测试,仅举几个例子。

以下测试失败,因为“March 09”和“09 March”不匹配。如何让此测试文化了解。 更好地测试任何人吗?

        [TestCase("March 09", "{0:m}")]                        
        [TestCase("March, 2008", "{0:y}")]  
             [TestCase("3/9/2008 4:05 PM", "{0:g}")                       
        public void When_stringFormat_a_date_should_match(string expected,string format)
        {
            DateTime dt = new DateTime(2008, 03, 09, 16, 05, 07);

            string actual = String.Format(format, dt);

           assert ??                
        }

Dates and formatting have always been a bit of a nightmare for me.
Lately I am doing lots of writing to file where dates must be convertted to strings in various formats(depending on client).

I would like to create a unittest that can consolidate the lot just put a couple of example.

The below test fails as "March 09" and "09 March" do not match.How do I make this test culture aware.
Better test anyone?

        [TestCase("March 09", "{0:m}")]                        
        [TestCase("March, 2008", "{0:y}")]  
             [TestCase("3/9/2008 4:05 PM", "{0:g}")                       
        public void When_stringFormat_a_date_should_match(string expected,string format)
        {
            DateTime dt = new DateTime(2008, 03, 09, 16, 05, 07);

            string actual = String.Format(format, dt);

           assert ??                
        }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

西瑶 2024-12-15 22:20:27

您正在调用 String.ToString()!指定CultureInfo(甚至使用此函数)没有意义,因为这始终返回独立于指定区域性的原始字符串。

IMO 你必须在转换日期时指定 CultureInfo ,即

string actual = String.Format(CultureInfo.InvariantCulture, format, dt);
Assert.AreEqual(expected, actual);

You're calling String.ToString()! It doesn't make sense to specify the CultureInfo (or even use this functio), since this always returns the original string independently of the specified culture.

IMO you have to specify the CultureInfo when converting the date, i.e.

string actual = String.Format(CultureInfo.InvariantCulture, format, dt);
Assert.AreEqual(expected, actual);
薔薇婲 2024-12-15 22:20:27
Assert.AreEqual(expected, actual);
Assert.AreEqual(expected, actual);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文