0

我打算用spring mvc编写测试类。我认为首先编写基础测试类是一件好事。我已经在服务层编写了一些服务类,任何人都可以帮助我用junit4在spring mvc中编写基础测试类。我需要在构建应用程序时测试所有测试用例。你能用简单的例子解释一下吗?谢谢

4

2 回答 2

3

尝试先编写没有基类的测试用例,然后你会看到基类出现。不要以为你马上就需要一个。

于 2013-06-20T13:37:57.357 回答
1

这是个好主意,您可以在其中放置常用功能,例如:

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = "classpath:applicationContext-test.xml")
@WebAppConfiguration
public abstract class Base {
于 2013-06-20T13:42:05.663 回答