1 | |
package org.jbehave.core.reporters; |
2 | |
|
3 | |
import java.io.File; |
4 | |
|
5 | |
import org.jbehave.core.configuration.Keywords; |
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
public class XmlTemplateOuput extends TemplateableOutput { |
14 | |
|
15 | |
public XmlTemplateOuput(File file, Keywords keywords) { |
16 | 1 | super(file, keywords, new FreemarkerProcessor(), "ftl/jbehave-xml-output.ftl"); |
17 | 1 | } |
18 | |
|
19 | |
public XmlTemplateOuput(File file, Keywords keywords, TemplateProcessor processor, String templatePath) { |
20 | 0 | super(file, keywords, processor, templatePath); |
21 | 0 | } |
22 | |
|
23 | |
} |