Package org.jbehave.examples.core.stories

Source Code of org.jbehave.examples.core.stories.ParameterDelimiters

package org.jbehave.examples.core.stories;

import org.jbehave.core.configuration.Configuration;
import org.jbehave.core.steps.ParameterControls;
import org.jbehave.examples.core.CoreStory;

public class ParameterDelimiters extends CoreStory {

    @Override
    public Configuration configuration() {
        return super.configuration().useParameterControls(new ParameterControls().useNameDelimiterLeft("[").useNameDelimiterRight("]"));
    }
}
TOP

Related Classes of org.jbehave.examples.core.stories.ParameterDelimiters

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.