我正在尝试首次使用Spring设置Junit测试套件并尝试在我的类中进行一些更改,但没有运气并最终出现此错误:“junit.framework.AssertionFailedError:Myclass中未找到任何测试”
简单地说,我有2个测试类都来自同一个基类,它加载Spring上下文,如下所示
@RunWith( SpringJUnit4ClassRunner.class )
@ContextConfiguration( locations =
{
"classpath:ApplicationContext.xml"
})
我尝试将这两个测试类添加到一个套件中,如下所示
@RunWith( SpringJUnit4ClassRunner.class )
@SuiteClasses({ OneTest.class, TwoTest.class })
public class MyTestSuite extends TestCase {
//nothing here
}
我从ant运行这个测试套件。但是,这给了我一个错误,说“没有找到测试” 但是,如果我从ant运行单独的2个测试用例,它们可以正常工作。不知道为什么会出现这种情况,我肯定在这里遗漏了一些东西。请指教。
答案 0 :(得分:7)
如评论中所述,我们使用@RunWith(Suite.class)
运行TestSuite,并使用@SuiteClasses({})
列出所有测试用例。为了不在每个测试用例中重复@RunWith(SpringJunit4ClassRunner.class)
和@ContextConfiguration(locations = {classpath:META-INF/spring.xml})
,我们创建了一个AbstractTestCase,并在其上定义了这些注释,并为所有测试用例扩展了这个抽象类。样本可以在下面找到:
/**
* An abstract test case with spring runner configuration, used by all test cases.
*/
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations =
{ "classpath:META-INF/spring.xml" })
public abstract class AbstractSampleTestCase
{
}
public class SampleTestOne extends AbstractSampleTestCase
{
@Resource
private SampleInterface sampleInterface;
@Test
public void test()
{
assertNotNull(sampleInterface);
}
}
public class SampleTestTwo extends AbstractSampleTestCase
{
@Resource
private SampleInterface sampleInterface;
@Test
public void test()
{
assertNotNull(sampleInterface);
}
}
@RunWith(Suite.class)
@SuiteClasses(
{ SampleTestOne.class, SampleTestTwo.class })
public class SampleTestSuite
{
}
如果你不想拥有AbstractSampleTest
,那么你需要在每个测试用例上重复spring runner注释,直到Spring出现类似于他们需要添加的SpringJunitSuiteRunner
的方式SpringJunitParameterizedRunner
。