Hi I am wondering if the follwoing code is correct. I have an ApplicationContext on my local drive that I want to use when running a JUnit test.
I have the following code -
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations={"C:\\Users\\John. Doe\\Workspace\\Project\\applicationContext.xml\\" })
will this load the applicationContext so I can do JUnit tests?
Thanks


Reply With Quote