Package org.drools.spring

Examples of org.drools.spring.SpringTestSetup


public class RuleSetFactoryBeanTest extends TestCase {

    private static SpringTestSetup.ContextHolder contextHolder = new SpringTestSetup.ContextHolder();

    public static Test suite() {
        return new SpringTestSetup(
                new TestSuite(RuleSetFactoryBeanTest.class),
                contextHolder, "org/drools/spring/factory/rulesets.appctx.xml");
    }
View Full Code Here


public class RuleSetFactoryBeanApplicationDataTest extends TestCase {

    private static SpringTestSetup.ContextHolder contextHolder = new SpringTestSetup.ContextHolder();

    public static Test suite() {
        return new SpringTestSetup(
                new TestSuite(RuleSetFactoryBeanApplicationDataTest.class),
                contextHolder, "org/drools/spring/factory/appdata-test.appctx.xml");
    }
View Full Code Here

    public static class Fact_B extends Object {}
   
    private static SpringTestSetup.ContextHolder contextHolder = new SpringTestSetup.ContextHolder();

    public static Test suite() {
        return new SpringTestSetup(
                new TestSuite(WorkingMemoryFactoryBeanTest.class),
                contextHolder, "org/drools/spring/factory/workingmemory.appctx.xml");
    }
View Full Code Here

public class RuleBaseFactoryBeanTest extends TestCase {

    private static SpringTestSetup.ContextHolder contextHolder = new SpringTestSetup.ContextHolder();

    public static Test suite() {
        return new SpringTestSetup(
                new TestSuite(RuleBaseFactoryBeanTest.class),
                contextHolder, "org/drools/spring/factory/rulebase.appctx.xml");
    }
View Full Code Here

public class AnnotationSpringTest extends TestCase {

    private static SpringTestSetup.ContextHolder contextHolder = new SpringTestSetup.ContextHolder();

    public static Test suite() {
        return new SpringTestSetup(
                new TestSuite(AnnotationSpringTest.class),
                contextHolder, "org/drools/spring/metadata/annotation/java/for-test.appctx.xml");
    }
View Full Code Here

TOP

Related Classes of org.drools.spring.SpringTestSetup

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.