Examples of FabricSpringApplication


Examples of io.fabric8.process.spring.boot.container.FabricSpringApplication

    public void shouldLoadFabricStarterConfiguration() {
        // Given
        System.setProperty(SPRING_MAIN_SOURCES, "io.fabric8.process.spring.boot.container.simple");

        // When
        ApplicationContext applicationContext = new FabricSpringApplication().run();
        TestStarterBean testStarterBean = applicationContext.getBean(TestStarterBean.class);

        // Then
        assertNotNull(testStarterBean);
    }
View Full Code Here

Examples of io.fabric8.process.spring.boot.container.FabricSpringApplication

    public void shouldLoadTestScopedBean() {
        // Given
        System.setProperty(SPRING_MAIN_SOURCES, "io.fabric8.process.spring.boot.container.simple");

        // When
        ApplicationContext applicationContext = new FabricSpringApplication().run();
        String testScopedBean = applicationContext.getBean(String.class);

        // Then
        assertNotNull(testScopedBean);
    }
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.