[b]Spring Annotation for Junit[/b]
@RunWith(SpringJUnit4ClassRunner.class)
//specifies the Spring configuration to load for this test fixture
@ContextConfiguration(locations={"/service-config.xml"})
public class DefaultAccountServiceTest {
@Autowired
private AccountService accountService;