如何测试扩展 Thread 的类
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先最重要的是:通常认为在不必要的地方不继承是更好的设计。通常情况下,设计得更好的代码更容易测试。
测试现有代码的最简单方法是调用
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 ofstart
. If you want to keep the thread you can callThread.join
to wait for completion. You may want to callThread.setUncaughtExceptionHandler
to report any unchecked exception from the thread.