TestIT.Adapter.SpecFlowPlugin
1.6.4
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package TestIT.Adapter.SpecFlowPlugin --version 1.6.4
NuGet\Install-Package TestIT.Adapter.SpecFlowPlugin -Version 1.6.4
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="TestIT.Adapter.SpecFlowPlugin" Version="1.6.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TestIT.Adapter.SpecFlowPlugin --version 1.6.4
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: TestIT.Adapter.SpecFlowPlugin, 1.6.4"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install TestIT.Adapter.SpecFlowPlugin as a Cake Addin #addin nuget:?package=TestIT.Adapter.SpecFlowPlugin&version=1.6.4 // Install TestIT.Adapter.SpecFlowPlugin as a Cake Tool #tool nuget:?package=TestIT.Adapter.SpecFlowPlugin&version=1.6.4
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Test IT TMS Adapter for SpecFlow
Getting Started
Installation
NuGet CLI
Install-Package TestIT.Adapter.SpecFlowPlugin
Install-Package TestIT.Adapter.Core
.NET CLI
dotnet add package TestIT.Adapter.SpecFlowPlugin
dotnet add package TestIT.Adapter.Core
Add runtime plugin
Also you need to add following lines to specflow.json
:
{
"assembly": "Tms.Adapter.SpecFlowPlugin"
}
Usage
Configuration
Description | File property | Environment variable |
---|---|---|
Location of the TMS instance | url | TMS_URL |
API secret key How to getting API secret key? | privateToken | TMS_PRIVATE_TOKEN |
ID of project in TMS instance How to getting project ID? | projectId | TMS_PROJECT_ID |
ID of configuration in TMS instance How to getting configuration ID? | configurationId | TMS_CONFIGURATION_ID |
ID of the created test run in TMS instance. If you don't provide a test run ID, the adapter will automatically create one. | testRunId | TMS_TEST_RUN_ID |
Parameter for specifying the name of test run in TMS instance (It's optional). If it is not provided, it is created automatically | testRunName | TMS_TEST_RUN_NAME |
It enables/disables certificate validation (It's optional). Default value - true | certValidation | TMS_CERT_VALIDATION |
Mode of automatic creation test cases (It's optional). Default value - false. The adapter supports following modes:<br/>true - in this mode, the adapter will create a test case linked to the created autotest (not to the updated autotest)<br/>false - in this mode, the adapter will not create a test case | automaticCreationTestCases | TMS_AUTOMATIC_CREATION_TEST_CASES |
Mode of automatic updation links to test cases (It's optional). Default value - false. The adapter supports following modes:<br/>true - in this mode, the adapter will update links to test cases<br/>false - in this mode, the adapter will not update link to test cases | automaticUpdationLinksToTestCases | TMS_AUTOMATIC_UPDATION_LINKS_TO_TEST_CASES |
Enable debug logs (It's optional). Default value - false | isDebug | - |
File
Create Tms.config.json file in the project directory:
{
"url": "URL",
"privateToken": "USER_PRIVATE_TOKEN",
"projectId": "PROJECT_ID",
"configurationId": "CONFIGURATION_ID",
"testRunId": "TEST_RUN_ID",
"testRunName": "TEST_RUN_NAME",
"automaticCreationTestCases": false,
"automaticUpdationLinksToTestCases": false,
"certValidation": true,
"isDebug": true
}
How to run
Just run the command:
dotnet test
Attributes
Use attributes to specify information about autotest.
Description of attributes:
WorkItemIds
- a method that links autotests with manual tests. Receives the array of manual tests' IDsDisplayName
- internal autotest name (used in Test IT)ExternalId
- unique internal autotest ID (used in Test IT)Title
- autotest name specified in the autotest card. If not specified, the name from the displayName method is usedDescription
- autotest description specified in the autotest cardLabels
- tags listed in the autotest cardLinks
- links listed in the autotest card
Description of methods:
Adapter.AddLinks
- add links to the autotest result.Adapter.AddAttachments
- add attachments to the autotest result.Adapter.AddMessage
- add message to the autotest result.
Examples
Simple test
Feature: Simple
@ExternalId=With_all_annotations_success
@DisplayName=With_all_annotations_success_display_name
@Title=With_all_annotations_success_title
@Description=With_all_annotations_success
@Labels=Label1,Label2
@Links={"url":"https://test01.example","title":"Example01","description":"Example01_description","type":"Issue"}
@Links={"url":"https://test02.example","title":"Example02","description":"Example02_description","type":"Issue"}
@WorkItemIds=123,321
Scenario: With all annotations
Then return true
Parameterized test
Feature: Parameterized
@ExternalId=parametrized_test_{number}_{value}_success
@DisplayName=parametrized_test_{number}_{value}_success_display_name
@Title=parametrized_test_{number}_{value}_success_title
@Description=parametrized_test_{number}_{value}_success
Scenario Outline: Parametrized test
When get parameters <number> <value>
Then return true
Examples:
| number | value |
| 1 | string01 |
| 2 | string02 |
| 3 | string03 |
Contributing
You can help to develop the project. Any contributions are greatly appreciated.
- If you have suggestions for adding or removing projects, feel free to open an issue to discuss it, or create a direct pull request after you edit the README.md file with necessary changes.
- Make sure to check your spelling and grammar.
- Create individual PR for each suggestion.
- Read the Code Of Conduct before posting your first idea as well.
License
Distributed under the Apache-2.0 License. See LICENSE for more information.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.1
- SpecFlow (>= 3.9.74)
- System.Text.Json (>= 8.0.0)
- TestIT.Adapter.Core (>= 1.6.4)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.6.5 | 80 | 10/8/2024 |
1.6.4 | 114 | 9/12/2024 |
1.6.3 | 125 | 7/5/2024 |
1.6.1 | 106 | 6/30/2024 |
1.6.0 | 123 | 5/20/2024 |
1.5.1 | 117 | 4/9/2024 |
1.5.0 | 99 | 3/29/2024 |
1.4.1 | 117 | 3/11/2024 |
1.4.0 | 108 | 3/11/2024 |
1.3.1 | 104 | 2/15/2024 |
1.3.0 | 127 | 12/20/2023 |
1.2.0 | 134 | 12/18/2023 |
1.1.1 | 128 | 12/8/2023 |
1.1.0 | 153 | 11/27/2023 |
1.0.8 | 1,067 | 7/31/2023 |
1.0.7 | 154 | 7/27/2023 |
1.0.6 | 144 | 7/27/2023 |
1.0.5 | 159 | 7/3/2023 |
1.0.4 | 182 | 7/3/2023 |