使用 string.Format 和 UnitTest 日期
日期和格式对我来说一直是一场噩梦。 最近,我做了很多写入文件的工作,其中日期必须转换为各种格式的字符串(取决于客户端)。
我想创建一个可以整合所有内容的单元测试,仅举几个例子。
以下测试失败,因为“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您正在调用
String.ToString()
!指定CultureInfo
(甚至使用此函数)没有意义,因为这始终返回独立于指定区域性的原始字符串。IMO 你必须在转换日期时指定
CultureInfo
,即You're calling
String.ToString()
! It doesn't make sense to specify theCultureInfo
(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.