Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
XmlTemplateOuput |
|
| 1.0;1 |
1 | package org.jbehave.core.reporters; | |
2 | ||
3 | import java.io.File; | |
4 | ||
5 | import org.jbehave.core.configuration.Keywords; | |
6 | ||
7 | /** | |
8 | * @deprecated Use {@link XmlTemplateOutput} | |
9 | */ | |
10 | public class XmlTemplateOuput extends XmlTemplateOutput { | |
11 | ||
12 | public XmlTemplateOuput(File file, Keywords keywords) { | |
13 | 0 | super(file, keywords); |
14 | 0 | } |
15 | ||
16 | public XmlTemplateOuput(File file, Keywords keywords, TemplateProcessor processor, String templatePath) { | |
17 | 0 | super(file, keywords, processor, templatePath); |
18 | 0 | } |
19 | ||
20 | } |