diff --git a/Plugins/Reqnroll.SpecFlowCompatibility.ReqnrollPlugin/Wrappers/Attributes.cs b/Plugins/Reqnroll.SpecFlowCompatibility.ReqnrollPlugin/Wrappers/Attributes.cs index c8f24f20a..8e565ca14 100644 --- a/Plugins/Reqnroll.SpecFlowCompatibility.ReqnrollPlugin/Wrappers/Attributes.cs +++ b/Plugins/Reqnroll.SpecFlowCompatibility.ReqnrollPlugin/Wrappers/Attributes.cs @@ -86,4 +86,8 @@ public StepArgumentTransformation(string regex) : base(regex) public StepArgumentTransformation() { } +} + +public class ScopeAttribute : Reqnroll.ScopeAttribute +{ } \ No newline at end of file diff --git a/Plugins/Reqnroll.SpecFlowCompatibility.ReqnrollPlugin/Wrappers/PendingStepException.cs b/Plugins/Reqnroll.SpecFlowCompatibility.ReqnrollPlugin/Wrappers/PendingStepException.cs new file mode 100644 index 000000000..71d24ead3 --- /dev/null +++ b/Plugins/Reqnroll.SpecFlowCompatibility.ReqnrollPlugin/Wrappers/PendingStepException.cs @@ -0,0 +1,6 @@ +// ReSharper disable once CheckNamespace +namespace TechTalk.SpecFlow; + +public class PendingStepException : Reqnroll.PendingStepException +{ +} \ No newline at end of file diff --git a/Plugins/Reqnroll.SpecFlowCompatibility.ReqnrollPlugin/Wrappers/Steps.cs b/Plugins/Reqnroll.SpecFlowCompatibility.ReqnrollPlugin/Wrappers/Steps.cs new file mode 100644 index 000000000..1c489d3cc --- /dev/null +++ b/Plugins/Reqnroll.SpecFlowCompatibility.ReqnrollPlugin/Wrappers/Steps.cs @@ -0,0 +1,6 @@ +// ReSharper disable once CheckNamespace +namespace TechTalk.SpecFlow; + +public class Steps : Reqnroll.Steps +{ +} \ No newline at end of file