本文整理汇总了Java中org.jbehave.core.model.Meta.isEmpty方法的典型用法代码示例。如果您正苦于以下问题:Java Meta.isEmpty方法的具体用法?Java Meta.isEmpty怎么用?Java Meta.isEmpty使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.jbehave.core.model.Meta
的用法示例。
在下文中一共展示了Meta.isEmpty方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: runScenariosParametrisedByExamples
import org.jbehave.core.model.Meta; //导入方法依赖的package包/类
private void runScenariosParametrisedByExamples(RunContext context, Scenario scenario, Meta storyAndScenarioMeta)
throws Throwable {
ExamplesTable table = scenario.getExamplesTable();
reporter.get().beforeExamples(scenario.getSteps(), table);
Keywords keywords = context.configuration().keywords();
for (Map<String, String> scenarioParameters : table.getRows()) {
Meta parameterMeta = parameterMeta(keywords, scenarioParameters);
if ( !parameterMeta.isEmpty() && !context.filter.allow(parameterMeta) ){
continue;
}
reporter.get().example(scenarioParameters);
if (context.configuration().storyControls().resetStateBeforeScenario()) {
context.resetState();
}
runBeforeOrAfterScenarioSteps(context, scenario, storyAndScenarioMeta, Stage.BEFORE, ScenarioType.EXAMPLE);
addMetaParameters(scenarioParameters, storyAndScenarioMeta);
runGivenStories(scenario.getGivenStories(), scenarioParameters, context);
runScenarioSteps(context, scenario, scenarioParameters);
runBeforeOrAfterScenarioSteps(context, scenario, storyAndScenarioMeta, Stage.AFTER, ScenarioType.EXAMPLE);
}
reporter.get().afterExamples();
}
示例2: toString
import org.jbehave.core.model.Meta; //导入方法依赖的package包/类
private String toString(Meta meta)
{
StringBuilder buf = new StringBuilder();
if (!meta.isEmpty()) {
for (String name : meta.getPropertyNames()) {
buf.append(String.format(" @%s: %s \n", name, meta.getProperty(name)));
}
}
return buf.toString();
}
示例3: scenarioMeta
import org.jbehave.core.model.Meta; //导入方法依赖的package包/类
@Override
public void scenarioMeta(Meta meta)
{
if (!meta.isEmpty()) {
LOG.debug("Scenario Meta: \n{}", toString(meta));
}
}
示例4: scenarioMeta
import org.jbehave.core.model.Meta; //导入方法依赖的package包/类
public void scenarioMeta(Meta meta) {
if (!meta.isEmpty()) {
this.outputScenario.meta = new OutputMeta(meta);
}
}
示例5: scenarioMeta
import org.jbehave.core.model.Meta; //导入方法依赖的package包/类
public void scenarioMeta(Meta meta) {
if (!meta.isEmpty()) {
print(meta);
}
}