Examples of FlatScenarioStepsWithSpringDependencies


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
Copyright © 2018 www.massapi.com. 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.