| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| ParanamerConfiguration |
|
| 1.0;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 | } |