Package org.jboss.as.subsystem.test

Examples of org.jboss.as.subsystem.test.KernelServices.validateOperation()


            }
        });
        ModelNode operation = createAddOperation();
        KernelServices services = installInController(AdditionalInitialization.MANAGEMENT, Collections.singletonList(operation));

        services.validateOperation(operation);
    }

    /**
     * Tests that a valid operation passes validation
     */
 
View Full Code Here


        });
        ModelNode operation = createAddOperation();
        operation.get("test").set(1);
        KernelServices services = installInController(AdditionalInitialization.MANAGEMENT, Collections.singletonList(operation));

        services.validateOperation(operation);
    }

    @Test
    public void testNonExistantParameter() throws Exception {
        getMainExtension().setAddDescriptionProvider(new DescriptionProvider() {
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.