是否可以在解码示例中的注释中使用常量

is it possible to use constants in annatation in codeception example

有没有办法使用 codeception 使用 @example 注释来使用常量(或变量)? 我知道我们可以使用 doctrine 样式注释。

Data is defined via the @example annotation, using JSON or Doctrine-style notation (limited to a single line). Doctrine-style

class PageCest
{
 /**
  * @example(url="/", title="Welcome")
  * @example(url="/info", title="Info")
  * @example(url="/about", title="About Us")
  * @example(url="/contact", title="Contact Us")
  */
  public function staticPages(AcceptanceTester $I, \Codeception\Example $example)
  {
    $I->amOnPage($example['url']);
    $I->see($example['title'], 'h1');
    $I->seeInTitle($example['title']);
  }
}

但是使用在学说中起作用的常量在这里似乎不起作用

/**
 * @example(url=Class::Constant, title="Welcome")
 */

有没有办法实现 运行 多个测试示例,但使用常量或变量来提供值?

好像没有办法直接像doctrine的实现那样。 我找到的解决方法是将常量名称作为字符串传递。

/**
 * @example(url="MyConstantName", title="Welcome")
 */

然后在代码中使用常量函数找到您的常量值。

constant('Full\Namespace\MyClass::' . $example['MyConstantName'])