Package com.jboss.jbossnetwork.product.jbpm.handlers.test

Examples of com.jboss.jbossnetwork.product.jbpm.handlers.test.MockContentContext


    public void successfulWorkflow() throws Exception {
        // Setup
        MockControlActionFacade mockFacade = new MockControlActionFacade();
        mockFacade.setResultCode(OperationServicesResultCode.SUCCESS);

        MockContentContext mockContentContext = new MockContentContext();
        MockContentServices mockContentServices = (MockContentServices) mockContentContext.getContentServices();
        mockContentServices.setFilename("test-patch.zip");

        // Test
        JBPMWorkflowManager manager = new JBPMWorkflowManager(mockContentContext, mockFacade,
            getJBossPaths(jbossPluginConfiguration));
View Full Code Here


    public void failedWorkflow() throws Exception {
        // Setup
        MockControlActionFacade mockFacade = new MockControlActionFacade();
        mockFacade.setResultCode(OperationServicesResultCode.SUCCESS);

        MockContentContext mockContentContext = new MockContentContext();
        MockContentServices mockContentServices = (MockContentServices) mockContentContext.getContentServices();
        mockContentServices.setFilename("nonexistent-file");

        // Test
        JBPMWorkflowManager manager = new JBPMWorkflowManager(mockContentContext, mockFacade,
            getJBossPaths(jbossPluginConfiguration));
View Full Code Here

    public void successfulTranslateSteps() throws Exception {
        // Setup
        MockControlActionFacade mockFacade = new MockControlActionFacade();
        mockFacade.setResultCode(OperationServicesResultCode.SUCCESS);

        MockContentContext mockContentContext = new MockContentContext();
        MockContentServices mockContentServices = (MockContentServices) mockContentContext.getContentServices();
        mockContentServices.setFilename("test-patch.zip");

        // Test
        JBPMWorkflowManager manager = new JBPMWorkflowManager(mockContentContext, mockFacade,
            getJBossPaths(jbossPluginConfiguration));
View Full Code Here

TOP

Related Classes of com.jboss.jbossnetwork.product.jbpm.handlers.test.MockContentContext

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.