develog

JUnit 에서 ApplicationContext 접근 본문

Dev/junit

JUnit 에서 ApplicationContext 접근

냐옴 2013. 12. 11. 10:26

@RunWith(ExtSpringJUnit4ClassRunner.class)

@ContextConfiguration(locations = { "classpath:test/config/beans.xml" })

public class TestQuartz {

@Autowired

private ApplicationContext context;

@Test

public void test1() throws Exception {

System.out.println(context);

}


}



'Dev > junit' 카테고리의 다른 글

[junit] spring junit 설정1  (0) 2019.08.02
[JUnit] JUnit Transaction Rollback  (0) 2015.05.06
[junit] ExtSpringJUnit4ClassRunner  (0) 2013.12.09
JUnit 버전 확인  (0) 2013.12.09
JUnit 4 in 60 Seconds  (0) 2013.08.07
Comments