Package org.jbehave.core.configuration

Source Code of org.jbehave.core.configuration.ParanamerConfiguration

package org.jbehave.core.configuration;

import com.thoughtworks.paranamer.BytecodeReadingParanamer;
import com.thoughtworks.paranamer.CachingParanamer;
import com.thoughtworks.paranamer.Paranamer;

/**
* The configuration that uses:
* <ul>
* <li>{@link Paranamer}: {@link CachingParanamer}</li>
* </ul>
*/
public class ParanamerConfiguration extends MostUsefulConfiguration {

    public ParanamerConfiguration() {
        useParanamer(new CachingParanamer(new BytecodeReadingParanamer()));
    }

}
TOP

Related Classes of org.jbehave.core.configuration.ParanamerConfiguration

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.