检查 JUnit 测试用例中的超时

发布于 2024-09-29 09:17:21 字数 177 浏览 0 评论 0原文

我有一个 JUnit 测试用例,我期望特定的方法调用需要很长时间(超过一分钟)。我想

  1. 进行方法调用。
  2. 确保方法调用至少需要一分钟,否则 JUnit 断言将失败。
  3. 然后终止方法调用(假设它应该花费一分钟以上),因为它可能需要很长时间。

我该怎么做?

I have a JUnit test case where I'm expecting a particular method call to take a long time (over a minute). I want to

  1. Make the method call.
  2. Make sure the method call takes at least a minute and have a JUnit assertion fail if it doesn't.
  3. Then kill the method call (assuming it took more than a minute as it should) because it could take a really long time.

How do I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情何以堪。 2024-10-06 09:17:21

您可以编写一个实现可运行的类来包装感兴趣的方法;假设允许生成线程。

public class CallMethod implements Runnable
{
   //time in milli
   public long getStartTime()
   {
     return startTime;
   }

   //time in milli
   public long getEndTime()
   {
     return endTime;
   }

   public void run()
   {
       startTime = ...;
       obj.longRunningMethod();
       endTime = ...;
   }
}

然后在你的 JUnit 中你可以做类似的事情:

public void testCase1()
{
  CallMethod call = new CallMethod();
  Thread t = new Thread(call);
  t.start();
  t.join(60000); // wait one minute

  assertTrue(t.alive() || call.getEndTime() - call.getStartTime() >= 60000);

}

You can write a class implementing runnable that wraps around the method of interest; assuming spawning threads is allowed.

public class CallMethod implements Runnable
{
   //time in milli
   public long getStartTime()
   {
     return startTime;
   }

   //time in milli
   public long getEndTime()
   {
     return endTime;
   }

   public void run()
   {
       startTime = ...;
       obj.longRunningMethod();
       endTime = ...;
   }
}

Then in your JUnit you can do something like:

public void testCase1()
{
  CallMethod call = new CallMethod();
  Thread t = new Thread(call);
  t.start();
  t.join(60000); // wait one minute

  assertTrue(t.alive() || call.getEndTime() - call.getStartTime() >= 60000);

}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文