-
Notifications
You must be signed in to change notification settings - Fork 16
Home
FosseGrim edited this page Dec 24, 2021
·
7 revisions
A set of libraries for BDD testing. The main goal of this solution is to bring together tools and capabilities for creating tests of various integrations (database, api, ui, queues and etc.)
To interact with libraries, they are divided into two main entities: core and extensions
using add-ons from SpecFlow
Follow the instructions below to get started:
- Create a Unit Test Project.
- Add one or more libraries (Molder.SpecFlow.*) with steps and extensions.
- Add specflow.json by template
{
"language": {
"feature": "en-us"
},
"stepAssemblies": [
{
"assembly": "Molder.SpecFlow.Generator"
}
]
}
- Build the project.
- Create your first scenario.
- Create a Class Library Project.
- Add one or more libraries (Molder.*) with api.
- Build the project.
- Create your first steps.