Date dateOne = new Date();
dateOne.setTime(61202516585000L);
Date dateTwo = new Date();
dateTwo.setTime(61202516585123L);
assertEquals(dateOne, dateTwo);
public class DateBuilder {
public java.util.Date now() {
return new java.util.Date();
}
}
创建datebuilder成员并更改调用 new Date 至 dateBuilder.now() ``` import java.util.Date;
public class Demo {
DateBuilder dateBuilder = new DateBuilder();
public void run() throws InterruptedException {
Date dateOne = dateBuilder.now();
Thread.sleep(10);
Date dateTwo = dateBuilder.now();
System.out.println("Dates are the same: " + dateOne.equals(dateTwo));
}
public static void main(String[] args) throws InterruptedException {
new Demo().run();
}
LocalDateTime now = LocalDateTime.now().truncatedTo(ChronoUnit.SECONDS);
// e.g. in MySQL db "timestamp" is without fractional seconds precision (just up to seconds precision)
assertEquals(myTimestamp, now);
Date dateOne = new Date();
dateOne.setTime(61202516585000L);
Date dateTwo = new Date();
dateTwo.setTime(61202516585123L);
assertEquals(dateOne.getMonth(), dateTwo.getMonth());
assertEquals(dateOne.getDate(), dateTwo.getDate());
assertEquals(dateOne.getYear(), dateTwo.getYear());
// alternative to testing with deprecated methods in Date class
Calendar calOne = Calendar.getInstance();
Calendar calTwo = Calendar.getInstance();
calOne.setTime(dateOne);
calTwo.setTime(dateTwo);
assertEquals(calOne.get(Calendar.MONTH), calTwo.get(Calendar.MONTH));
assertEquals(calOne.get(Calendar.DATE), calTwo.get(Calendar.DATE));
assertEquals(calOne.get(Calendar.YEAR), calTwo.get(Calendar.YEAR));
import static org.junit.Assert.assertThat;
// further imports from org.junit. and org.hamcrest.
@Test
public void testAddEventsToBaby() {
Date referenceDate = new Date();
// Do something..
Date testDate = new Date();
//assertThat(referenceDate, equalTo(testDate)); // Test on equal could fail; it is a race condition
assertThat(referenceDate, sameCalendarDay(testDate, "yyyy MM dd"));
}
public static Matcher<Date> sameCalendarDay(final Object testValue, final String dateFormat){
final SimpleDateFormat formatter = new SimpleDateFormat(dateFormat);
return new BaseMatcher<Date>() {
protected Object theTestValue = testValue;
public boolean matches(Object theExpected) {
return formatter.format(theExpected).equals(formatter.format(theTestValue));
}
public void describeTo(Description description) {
description.appendText(theTestValue.toString());
}
};
}
public static void assertDateSimilar(Date expected, Date actual, long allowableVariance)
{
long variance = Math.abs(allowableVariance);
long millis = expected.getTime();
long lowerBound = millis - allowableVariance;
long upperBound = millis + allowableVariance;
DateFormat df = DateFormat.getDateTimeInstance();
boolean within = lowerBound <= actual.getTime() && actual.getTime() <= upperBound;
assertTrue(MessageFormat.format("Expected {0} with variance of {1} but received {2}", df.format(expected), allowableVariance, df.format(actual)), within);
}
Date dateOne = new Date();
dateOne.setTime(61202516585000L);
Date dateTwo = new Date();
dateTwo.setTime(61202516585123L);
// this line passes correctly
Assert.assertEquals(dateOne.getTime(), dateTwo.getTime(), 500.0);
// this line fails correctly
Assert.assertEquals(dateOne.getTime(), dateTwo.getTime(), 100.0);
java.lang.AssertionError:
Expecting:
<2014-07-28T08:00:00.000+08:00>
to have same year, month, day, hour, minute and second as:
<2014-07-28T08:10:00.000+08:00>
but had not.
19条答案
按热度按时间ppcbkaq51#
使用simpledatefromat将日期转换为字符串,在构造函数中指定所需的日期/时间字段并比较字符串值:
dluptydi2#
而不是使用
new Date
您可以直接创建一个小型协作者,您可以在测试中模拟它:创建datebuilder成员并更改调用
new Date
至dateBuilder.now()
```import java.util.Date;
public class Demo {
}
Dates are the same: false
public class DemoTest {
}
axzmvihb3#
我将对象强制转换为java.util.date并进行比较
jum4pzuy4#
还有一个解决方法,我会这样做:
r7s23pms5#
您可以在比较日期时选择所需的精度级别,例如:
w8ntj3qf6#
如果你用的是乔达,你可以用节日乔达时间。
flvtvl507#
你可以这样做:
不需要字符串比较。
e5nqia278#
使用
DateFormat
对象,其格式仅显示要匹配的部分并执行assertEquals()
在结果字符串上。你也可以很容易地用你自己的 PackageassertDatesAlmostEqual()
方法。cngwdvgl9#
在junit中,可以编写两个Assert方法,如下所示:
tyg4sfes10#
我上了一个小班,可能对一些最终来到这里的谷歌用户有用:https://stackoverflow.com/a/37168645/5930242
x6492ojm11#
只需比较你感兴趣的日期部分:
3z6pesqy12#
使用JUnit4,您还可以实现一个匹配器,根据您选择的精度来测试日期。在本例中,matcher将字符串格式表达式作为参数。对于这个例子,代码并不短。但是matcher类可以重用;如果你给它一个描述性的名字,你就可以用一种优雅的方式来记录测试的意图。
ev7lccsx13#
这实际上是一个比看起来更难的问题,因为在边界情况下,您不关心的方差会超过您正在检查的值的阈值。e、 g.毫秒差小于1秒,但两个时间戳跨越第二阈值、分钟阈值或小时阈值。这使得任何dateformat方法都很容易出错。
相反,我建议比较实际的毫秒时间戳,并提供一个方差增量,指出您认为两个日期对象之间的可接受差异。下面是一个过于冗长的例子:
siv3szwd14#
junit有一个内置的Assert,用于比较double,并指定它们需要有多接近。在本例中,delta是指您认为日期相等的毫秒数。这个解决方案没有边界条件,测量绝对方差,可以很容易地指定精度,并且不需要编写额外的库或代码。
请注意,它必须是100.0而不是100(或者需要转换为double)才能强制将它们作为double进行比较。
2uluyalo15#
对joda time使用assertjAssert(http://joel-costigliola.github.io/assertj/assertj-joda-time.html)
测试失败消息更具可读性