我正在StubbyDB中编写我的存根。并在功能测试中断言数据。这是我在功能测试中为计算断言日期所做的事情(使用 joda datetime 库)
DateTime now = DateTime.now();
DateTime future = now.plusMonths(6);
这是我在存根中所做的事情;
{{TODAY+6m}}
但我得到了几天的差异。这是错误还是我做错了什么?
编辑
考虑今天是“2016 年 9 月 30 日”,然后我加上 5 个月
now.plusMonths(5) => 2017-02-28
{{TODAY+5m}} => 2017-03-02