如何在方案概述示例中测试未修饰的值,例如“ hola”(不带双引号)?

Examples:
  |Fullname|Email|Password|
  |       Felipe|[email protected]|1234567|
  |Felipe       |[email protected]|1234567|
  |   Felipe    |[email protected]|1234567|

最佳答案

海事组织这太过分了。您不需要对不是您自己的代码进行深入测试。一个示例就足以证明集成,例如:

Given I am adding a new person
When I fill in a name containing whitespace
Then the name should be saved with the whitespace stripped

10-08 17:18