@Test
@Autowired
StudenDao studentDao;
public void saveStudentAndCoursewithBOClass() throws Exception{
DataSend datasend = new DataSend();
Student student= new Student();
student.setEmail("new@new2223.com");
student.setFirstName("new user firstname2223");
student.setLastName("new user lastname2223");
Course pr = new Course();
String courseName="history";
pr.setCourseName(courseName);
courseDao.save(pr);
As above junit 4 test case method when i auto wire
@Autowired
StudenDao studentDao;
Eclipse is complaining i cannot do it. Where as same auto wiring i was able to do in regular java class. Does junit test case do not allow to auto-wire the bean using annotations?
We get it - no one likes a content blocker. Take one extra minute and find out why we block content.
Not exactly the question you had in mind?
Sign up for an EE membership and get your own personalized solution. With an EE membership, you can ask unlimited troubleshooting, research, or opinion questions.
Experts Exchange has (a) saved my job multiple times, (b) saved me hours, days, and even weeks of work, and often (c) makes me look like a superhero! This place is MAGIC!