公历 - 基于文档的测试
完成 JUnit 后,我正在进行一些基于文档的测试,表中包含以下项目
输入变量 - 预期结果 - 实际结果 ..... 通过或失败 ....
如果我通过我的方法传递日期和时间
“01AUG07 " "14:40" 该方法应该返回给我一个公历历法,它会执行此操作,
我如何检查它是否创建了正确的历法?
谢谢
,不确定选择哪个是最好的,因为我不知道哪个是 - 我使用了 miks 并且它有效。
谢谢大家
After doing JUnit i am doing some document based testing that has the following items in a table
Input Variables - Expected Outcome - Actual Outcome ..... Pass or Fail ....
If i pass my method a date and a time
"01AUG07" "14:40" the method should return me a gregorian calander which it does
how can i check that it has created the correct one?
thanks
unsure which to pick as the best becuase i dont no which is - i used miks and it worked.
thanks guys
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用期望值创建一个
GregorianCalendar
并比较它们。我会使用SimpleDateFormat
和setTime
方法。Create a
GregorianCalendar
with the expect value and compare them. I'd useSimpleDateFormat
and thesetTime
method.例如,您可以比较字符串表示。
You could for example compare the string reprensetations.
我将
计算使用“文本”及其等效的毫秒值作为我的测试输入,并将这些毫秒作为预期值与我通过Calendar#getTimeInMillis。
I'd
calculate theuse both 'textual' and their equivalent millisecond values for my test input and compare those milliseconds as expected values with the values that I get with theCalendar#getTimeInMillis
.