Package net.thucydides.core.steps.samples

Examples of net.thucydides.core.steps.samples.FlatScenarioStepsWithSpringDependencies


    @Test
    public void should_inject_dependencies_into_step_library() {
        SpringDependencyInjector dependencyInjector = new SpringDependencyInjector();

        FlatScenarioStepsWithSpringDependencies steps = new FlatScenarioStepsWithSpringDependencies(pages);
        dependencyInjector.injectDependenciesInto(steps);

        assertThat(steps.widgetService, is(notNullValue()));
        assertThat(steps.catalogService, is(notNullValue()));
View Full Code Here

TOP

Related Classes of net.thucydides.core.steps.samples.FlatScenarioStepsWithSpringDependencies

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.