Coverage Report - org.jbehave.core.configuration.ParanamerConfiguration
 
Classes in this File Line Coverage Branch Coverage Complexity
ParanamerConfiguration
100%
3/3
N/A
1
 
 1  
 package org.jbehave.core.configuration;
 2  
 
 3  
 import com.thoughtworks.paranamer.BytecodeReadingParanamer;
 4  
 import com.thoughtworks.paranamer.CachingParanamer;
 5  
 import com.thoughtworks.paranamer.Paranamer;
 6  
 
 7  
 /**
 8  
  * The configuration that uses:
 9  
  * <ul>
 10  
  * <li>{@link Paranamer}: {@link CachingParanamer}</li>
 11  
  * </ul>
 12  
  */
 13  
 public class ParanamerConfiguration extends MostUsefulConfiguration {
 14  
 
 15  1
     public ParanamerConfiguration() {
 16  1
         useParanamer(new CachingParanamer(new BytecodeReadingParanamer()));
 17  1
     }
 18  
 
 19  
 }