gpt4 book ai didi

specflow - 您可以在 SpecFlow 的场景大纲中标记各个示例吗?

转载 作者:行者123 更新时间:2023-12-05 00:58:23 25 4
gpt4 key购买 nike

场景大纲对于创建数据驱动的测试非常方便,但是场景的数量会随着示例的数量而增加。我已经养成了标记场景的习惯,以便更容易过滤我们应用程序的主要功能。

我想设置一个适用于所有主要用例的“冒烟测试”。其中一些用例是在对日期或数字执行边界测试的场景大纲中捕获的,但我只想在示例中找到一个的原型(prototype)案例。

例如,假设我们有一个功能允许我们在工作中添加职位空缺(基本上是“招聘机会”而不是“我们有温暖的 body 填补这个职位”)。

在屏幕上,我们有两个最低经验的表单域:年和月。用户在月份字段中输入的时间不应超过 11 个月,否则他们应该在年份字段中输入一些内容(例如,18 个月实际上应该是 1 年零 6 个月)。

@job-openings
Scenario Outline: Adding a job opening with experience
Given a job exists
When I add a job opening requiring <years> years and <months> months experience
Then a job opening should exist requiring <years> years and <months> months experience

Examples:
| years | months |
| 0 | 1 |
| 0 | 11 |
| 1 | 0 |
| 2 | 6 | # <-- the "prototypical" example I want to tag
| 99 | 0 |
| 99 | 11 |
| 100 | 0 |

从回归测试的角度来看,让这些示例在几年和几个月内达到可接受值的界限肯定是有用的,但在执行系统的“冒烟测试”时则不然。最好在代表典型用例的场景大纲中运行一个示例。作为一些背景信息,我们有一个 PowerShell 脚本,开发人员可以使用它来运行各种自动化测试,并且针对所有主要功能的一般“冒烟测试”会很有用。

有没有办法在场景大纲中标记单个示例?

最佳答案

这就是我的做法:

@job-openings
Scenario Outline: Adding a job opening with experience
Given a job exists
When I add a job opening requiring <years> years and <months> months experience
Then a job opening should exist requiring <years> years and <months> months experience

@smoketest @regression
Examples:
| years | months |
| 2 | 6 | # <-- the "prototypical" example I want to tag

@regression
Examples:
| years | months |
| 0 | 1 |
| 0 | 11 |
| 1 | 0 |
| 99 | 0 |
| 99 | 11 |
| 100 | 0 |

有两个示例部分都属于该场景。 Smoketest 有自己的示例部分。运行时

dotnet test --filter "TestCategory=job-opening&TestCategory=smoketest"

它只会运行带有smoketest 标签的示例。运行时

dotnet test --filter "TestCategory=job-opening&TestCategory=regression"

它将运行所有示例。它也会运行smoketest,因为它也有回归标签。

user1207289 的方法也有效。当测试中断并且我想稍后重新测试时,我有时会这样做。生成测试时,您要运行的特定示例将获得一个名称(例如,AddingAJob_ExampleYears2Months6)。您可以使用 -t 标志在场景中找到生成的单元测试的名称,该标志列出了所有测试:

dotnet test --filter "TestCategory=job-opening" -t

要运行一项特定的测试(技术上是所有名称中带有 AddingJob_ExampleYears2Months6 的测试):

dotnet test --filter AddingAJob_ExampleYears2Months6

我在上面的示例中使用了官方的 dotnet cli 工具,但对于其他测试运行器来说非常相似。

关于specflow - 您可以在 SpecFlow 的场景大纲中标记各个示例吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57992278/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com