Package net.thucydides.core.steps.di

Examples of net.thucydides.core.steps.di.ClasspathDependencyInjectorService


    }

    @Test
    public void should_find_spring_dependency_injector_service() {
        ClasspathDependencyInjectorService dependencyInjectorService = new ClasspathDependencyInjectorService();

        List<DependencyInjector> dependencyInjectors = dependencyInjectorService.findDependencyInjectors();

        assertThat(dependencyInjectors.size(), greaterThan(0));
    }
View Full Code Here

TOP

Related Classes of net.thucydides.core.steps.di.ClasspathDependencyInjectorService

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.