我正在尝试使用Behave
中的Eclipse
构建BDD测试环境。每当我从import
定义开始,from behave import *
Eclipse
会引发import
警告。
此外,given
,when
和then
的装饰器标记为undefined variables
。
有没有人知道为什么decorators
没有导入?
使用from behave import *
Unused in wild import: AmbiguousStep, StepRegistry, i18n, importer, json_parser, log_capture, matchers, model, names, runner, runner_util, setup_step_decorators, step_matcher, step_registry, tag_expression, textutil... others suppressed
装饰器的错误消息:
Undefined variable: given
答案 0 :(得分:1)
首先:
import explicit
然后:
from behave import given, when, then, step
如果它没有添加注释,那应该可行。)