Khi cố gắng khởi động JUnit-Test của tôi từ Eclipse, tôi nhận được "ClassNotFoundException". Khi chạy "mvn test" từ console - mọi thứ hoạt động tốt. Ngoài ra, không có vấn đề nào được báo cáo trong Eclipse.
Cấu trúc dự án của tôi như sau:
- dự án mẹ (pom-bao bì)
- Dự án web (đóng gói chiến tranh - thử nghiệm JUnit của tôi ở đây)
- Dự án linh hoạt
- Dự án cấu hình
sửa: Làm thế nào để không tìm thấy lớp? Đó là một ứng dụng HelloWorld đơn giản không có thư viện đặc biệt.
Đây là cấu hình chạy JUnit của tôi: alt text http://www.walkner.biz/_temp/runconfig.png
Testclass (nhưng như tôi đã nói; nó cũng không hoạt động với HelloWorld đơn giản ...):
import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import biz.prognoserechnung.domain.User;
import biz.prognoserechnung.domain.UserRepository;
import biz.prognoserechnung.domain.hibernate.UserHibernateDao;
public class UserDaoTest {
/**
* the applicationcontext.
*/
private ApplicationContext ctx = null;
/**
* the user itself.
*/
private User record = null;
/**
* Interface for the user.
*/
private UserRepository dao = null;
@Before
public void setUp() throws Exception {
String[] paths = { "WEB-INF/applicationContext.xml" };
ctx = new ClassPathXmlApplicationContext(paths);
dao = (UserHibernateDao) ctx.getBean("userRepository");
}
@After
public void tearDown() throws Exception {
dao = null;
}
@Test
public final void testIsUser() throws Exception {
Assert.assertTrue(dao.isUser("John", "Doe"));
}
@Test
public final void testIsNoUser() throws Exception {
Assert.assertFalse(dao.isUser("not", "existing"));
Assert.assertFalse(dao.isUser(null, null));
Assert.assertFalse(dao.isUser("", ""));
}
}