如何测试扩展 Thread 的类

发布于 2024-11-03 13:40:28 字数 355 浏览 4 评论 0原文

Java 方法可以使用 jUnit 4 中的assertEquals(,)、asssertTrue(_) 等断言进行测试。如何使用断言来测试这样的内容:

public class MyThread extends Thread {
    public int val;

    public MyThread(int val){
        this.val = val;
    }

    @Override
    public void run(){
         // doSomeWork(); 
    }
}

另外,我需要等待 run()在 jUnit 返回测试结果之前完成执行?

Java methods can be tested using assertions like assertEquals(,), asssertTrue(_) in jUnit 4. How do I use assertions to test something like this:

public class MyThread extends Thread {
    public int val;

    public MyThread(int val){
        this.val = val;
    }

    @Override
    public void run(){
         // doSomeWork(); 
    }
}

Also, do I need to wait for run() to finish executing before jUnit returns the test results?

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

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

发布评论

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

评论(1

玩世 2024-11-10 13:40:28

首先最重要的是:通常认为在不必要的地方不继承是更好的设计。通常情况下,设计得更好的代码更容易测试。

测试现有代码的最简单方法是调用 run 而不是 start。如果你想保留线程,你可以调用 Thread.join 来等待完成。您可能需要调用 Thread.setUncaughtExceptionHandler 来报告线程中的任何未经检查的异常。

Most important things first: It's generally considered better design not to inherit where unnecessary. It's usually the case that better designed code is easier to test.

The simplest possible way to test the existing code is to call run instead of start. If you want to keep the thread you can call Thread.join to wait for completion. You may want to call Thread.setUncaughtExceptionHandler to report any unchecked exception from the thread.

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