I recently tried to run my junit tests to ensure that I didn’t break anything after monkeying around with my code, and I ran into the following error:
|
1
|
Exception in thread "main" java.lang.RuntimeException: Stub!
|
Here’s my code that runs my tests:
|
1
2
3
4
5
6
7
8
9
10
11
12
13
|
public
class
RunTestSuite {
public
static
void
main(String[] a) {
TestRunner.run(suite());
}
public
static
Test suite() {
TestSuite suite =
new
TestSuite();
suite.addTestSuite(MyClassTests.
class
);
return
suite;
}
}
|
The stack trace pointed to line 8, so I didn’t know what to make of it since I just had this setup correctly, and TestSuite is a JUnit thing.
Googling mostly resulted in issues with using an Android Test Project (I’m not) and running the tests in your desktop’s JVM instead of the actual device’s (see here).
Eventually, though, I found this post that informed me that the JUnit library needs to be at the top of the test project’s build order.
Here are the steps to change the build order in Eclipse:
- Right-click your test project
- Click Bulid Path->Configure Build Path…
- Click the Order and Export tab
- Select the JUnit reference
- Click the Top button
本文介绍了一个常见的JUnit测试错误“RuntimeException: Stub!”及其解决方案。错误发生在尝试运行测试套件时,并指向了代码中的第八行。文章提供了调整Eclipse中项目构建路径顺序的方法来解决这个问题。
841

被折叠的 条评论
为什么被折叠?



