我正在尝试为我的 Web 应用程序编写 JUnit4 测试,它们之前一直运行良好。但是,现在当我尝试通过右键单击类文件-> 运行方式-> JUnit 测试来运行测试时,我看不到该选项。我认为这可能是因为一位同事在意外中提交了一些 Eclipse 设置/属性文件,这弄乱了我的。我在运行 10.6.X 的 Mac 上使用 Eclipse Helios。
我注意到测试类上的图标从“填充”J 变为“气泡”J,我不确定这是否表示某种问题:
我已经仔细检查并确保 JUnit4 在我的构建路径上,并且我已经转到 Eclipse -> Preferences -> JUnit 窗格并确认使用了 JUnit4 导入。
我的测试类如下所示:
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration( { "classpath*:/resources/action-test-appconfig.xml" })
@Transactional
public class UserControllerTest extends BaseStrutsTestCase<UserController> {
/**
* Tests the ability of a user to change their login username
* @throws Exception
*/
@Test
public void testChangeLogin() throws Exception {
任何想法和建议表示赞赏。