作为对此的进一步问题:特定日期的假系统时钟
是否可以在 Maven 配置文件中设置特定日期?毕竟,我使用测试配置文件来确定测试数据库的使用情况。
在您的 Maven 配置文件中,您可以通过 Surefire 将日期时间作为系统属性传递:
...
<profile>
...
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<systemPropertyVariables>
<testDateTime>2013-01-01T00:00:00.000Z</testDateTime>
</systemPropertyVariables>
</configuration>
</plugin>
</plugins>
</build>
</profile>
...
然后在您的测试中使用它,如下所示:
final String dateTime = System.getProperty("testDateTime");
// parse date-time etc...
这有帮助吗?