You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Spring beans are not available within @BeforeTest methods with TestNG tests, as follows:
@ContextConfiguration("/applicationContext.xml")
public class Testing extends AbstractTestNGSpringContextTests {
@Autowired
SessionFactory sessionFactory;
@Test
public void testMe() {
Session s = sessionFactory.openSession(); // This is OK
}
@BeforeTest
public void beforeTest() {
Session s = sessionFactory.openSession(); // This give NullPointerException
}
}