我有一个如下所示的测试用例
@ContextConfiguration(locations = { "classpath:chartContext-test.xml" })
@Component("allocationChartTest")
public class ChartServiceUnitTest extends AbstractTestNGSpringContextTests {
我有如下所示的导入
org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.testng.AbstractTestNGSpringContextTests;
所以基本上我使用的是spring junit,它与junit 4或3无关当我右键单击该类时,它没有给出一个名为run as junit的选项,不确定需要添加什么scr/mian/java和src/main /test 两者都包含在我的源代码中.. 有人可以告诉我为什么它给了我一个选项..