Package com.volantis.xml.pipeline.sax.impl.validation

Examples of com.volantis.xml.pipeline.sax.impl.validation.State


    /**
     * Ensure that the state behaves correctly.
     */
    public void testExpectParameterStartOrDeclarationsEnd() {
        State state = TemplateSchema.EXPECT_PARAMETER_START_OR_DECLARATIONS_END;

        checkExpects(state, TemplateSchema.PARAMETER_START,
                TemplateSchema.EXPECT_PARAMETER_VALUE_START);
        checkExpects(state, TemplateSchema.DECLARATIONS_END, TemplateSchema.EXPECT_BODY_START);
        checkExpects(state, TemplateSchema.APPLY_START, null);
View Full Code Here


    /**
     * Ensure that the state behaves correctly.
     */
    public void testExpectParameterValueStart() {
        State state = TemplateSchema.EXPECT_PARAMETER_VALUE_START;

        checkExpects(state, TemplateSchema.VALUE_START,
                TemplateSchema.EXPECT_PARAMETER_VALUE_END);
        checkExpects(state, TemplateSchema.APPLY_START, null);
    }
View Full Code Here

    /**
     * Ensure that the state behaves correctly.
     */
    public void testExpectParameterValueEnd() {
        State state = TemplateSchema.EXPECT_PARAMETER_VALUE_END;

        checkExpects(state, TemplateSchema.VALUE_END, TemplateSchema.EXPECT_PARAMETER_END);
        checkExpects(state, TemplateSchema.APPLY_END, null);
    }
View Full Code Here

    /**
     * Ensure that the state behaves correctly.
     */
    public void testExpectParameterEnd() {
        State state = TemplateSchema.EXPECT_PARAMETER_END;

        checkExpects(state, TemplateSchema.PARAMETER_END,
                TemplateSchema.EXPECT_PARAMETER_START_OR_DECLARATIONS_END);
        checkExpects(state, TemplateSchema.APPLY_END, null);
    }
View Full Code Here

    /**
     * Ensure that the state behaves correctly.
     */
    public void testExpectBodyStart() {
        State state = TemplateSchema.EXPECT_BODY_START;

        checkExpects(state, TemplateSchema.BODY_START, TemplateSchema.EXPECT_BODY_END);
        checkExpects(state, TemplateSchema.APPLY_END, null);
    }
View Full Code Here

    /**
     * Ensure that the state behaves correctly.
     */
    public void testExpectBodyEnd() {
        State state = TemplateSchema.EXPECT_BODY_END;

        checkExpects(state, TemplateSchema.BODY_END, TemplateSchema.EXPECT_DEFINITION_END);
        checkExpects(state, TemplateSchema.APPLY_END, null);
    }
View Full Code Here

    /**
     * Ensure that the state behaves correctly.
     */
    public void testExpectDefinitionEnd() {
        State state = TemplateSchema.EXPECT_DEFINITION_END;

        checkExpects(state, TemplateSchema.DEFINITION_END, TemplateSchema.EXPECT_APPLY_END);
        checkExpects(state, TemplateSchema.APPLY_END, null);
    }
View Full Code Here

TOP

Related Classes of com.volantis.xml.pipeline.sax.impl.validation.State

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.