Package com.softwaremill.common.cdi.autofactory

Examples of com.softwaremill.common.cdi.autofactory.Product


        this.priceCalculatorFactory = priceCalculatorFactory;
    }

    @Produces @ExampleProductQualifier
    public PriceCalculator create() {
        return priceCalculatorFactory.create(new Product(0));
    }
View Full Code Here


    @Inject
    private PriceCalculator.Factory priceCalculatorFactory;

    @Test
    public void testExamplePriceCalculator() {
        assertThat(priceCalculatorFactory.create(new Product(12)).getFinalPrice()).isEqualTo(11);
    }
View Full Code Here

TOP

Related Classes of com.softwaremill.common.cdi.autofactory.Product

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.