-
Notifications
You must be signed in to change notification settings - Fork 20
Replace SpecFlow with Reqnroll #201
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR migrates the test framework from SpecFlow (which is effectively defunct) to Reqnroll, its successor. The migration is straightforward and complete, updating all namespace references, package dependencies, and removing SpecFlow-specific workarounds.
Key changes:
- Updated all using statements from
TechTalk.SpecFlowtoReqnrollacross 13 test step definition files - Replaced
Corvus.Testing.SpecFlow.NUnitpackage withCorvus.Testing.ReqnRoll.NUnitv4.0.5 - Removed SpecFlow-specific compiler warning suppressions (SA1633, SA1649) and manual Compile Update entries from the project file
Reviewed changes
Copilot reviewed 14 out of 15 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| Solutions/Ais.Net.Specs/Ais/Net/Specs/SentenceLayerSpecsSteps.cs | Updated namespace from TechTalk.SpecFlow to Reqnroll |
| Solutions/Ais.Net.Specs/Ais/Net/Specs/ParsePayloadSpecsSteps.cs | Updated namespace from TechTalk.SpecFlow to Reqnroll |
| Solutions/Ais.Net.Specs/Ais/Net/Specs/NmeaStreamParserSpecsSteps.cs | Updated namespace from TechTalk.SpecFlow to Reqnroll |
| Solutions/Ais.Net.Specs/Ais/Net/Specs/NmeaLineToAisStreamAdapterSpecsSteps.cs | Updated namespace from TechTalk.SpecFlow to Reqnroll |
| Solutions/Ais.Net.Specs/Ais/Net/Specs/NmeaAisMessageStreamProcessorBindings.cs | Updated namespace to Reqnroll and corrected copyright header filename |
| Solutions/Ais.Net.Specs/Ais/Net/Specs/NmeaAisBitVectorParserSpecsSteps.cs | Updated namespace from TechTalk.SpecFlow to Reqnroll |
| Solutions/Ais.Net.Specs/Ais/Net/Specs/AisStringsSpecsSteps.cs | Updated namespace to Reqnroll and fixed typo in comment ("is" → "it") |
| Solutions/Ais.Net.Specs/Ais/Net/Specs/AisMessageTypes/StaticDataReportParserSpecsSteps.cs | Updated namespace from TechTalk.SpecFlow to Reqnroll |
| Solutions/Ais.Net.Specs/Ais/Net/Specs/AisMessageTypes/StaticAndVoyageRelatedDataParserSpecsSteps.cs | Updated namespace from TechTalk.SpecFlow to Reqnroll |
| Solutions/Ais.Net.Specs/Ais/Net/Specs/AisMessageTypes/PositionReportExtendedClassBParserSpecsSteps.cs | Updated namespace from TechTalk.SpecFlow to Reqnroll |
| Solutions/Ais.Net.Specs/Ais/Net/Specs/AisMessageTypes/PositionReportClassBParserSpecsSteps.cs | Updated namespace from TechTalk.SpecFlow to Reqnroll |
| Solutions/Ais.Net.Specs/Ais/Net/Specs/AisMessageTypes/PositionReportClassAParserSpecsSteps.cs | Updated namespace from TechTalk.SpecFlow to Reqnroll |
| Solutions/Ais.Net.Specs/Ais/Net/Specs/AisMessageTypes/LongRangeAisBroadcastParserSpecsSteps.cs | Updated namespace from TechTalk.SpecFlow to Reqnroll |
| Solutions/Ais.Net.Specs/Ais.Net.Specs.csproj | Updated package reference to Reqnroll variant, removed SpecFlow-specific NoWarn suppressions and Compile Update entries |
| .gitignore | Updated comment from SpecFlow to Reqnroll |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Code Coverage Summary Report - Linux (net8.0)Summary
CoverageNo assemblies have been covered. |
Code Coverage Summary Report - Windows (net8.0)Summary
CoverageAis.Net - 90%
Ais.Net.Specs - 99.2%
|
Code Coverage Summary Report - Windows (net481)Summary
CoverageNo assemblies have been covered. |
Resolves #188
SpecFlow is effectively defunct. But Reqnroll is effectively the same project by another name, so we've moved over to it.