Skip to content

Commit

Permalink
Warning disable/restore around template code. (#2194)
Browse files Browse the repository at this point in the history
  • Loading branch information
tillig authored Nov 3, 2020
1 parent 6a7fda5 commit 6b40b4f
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// <auto-generated />
#pragma warning disable

using System.CodeDom.Compiler;
using System.Diagnostics;
Expand All @@ -25,3 +26,4 @@ public static void AssemblyCleanup()
TestRunnerManager.OnTestRunEnd(currentAssembly);
}
}
#pragma warning restore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// <auto-generated />
#pragma warning disable

using System.CodeDom.Compiler;
using System.Diagnostics;
Expand All @@ -25,3 +26,4 @@ public void AssemblyCleanup()
TestRunnerManager.OnTestRunEnd(currentAssembly);
}
}
#pragma warning restore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
// <auto-generated />
#pragma warning disable

using System.CodeDom.Compiler;

[assembly: global::Xunit.TestFramework("TechTalk.SpecFlow.xUnit.SpecFlowPlugin.XunitTestFrameworkWithAssemblyFixture", "TechTalk.SpecFlow.xUnit.SpecFlowPlugin")]
Expand All @@ -20,3 +22,4 @@ public void Dispose()
global::TechTalk.SpecFlow.TestRunnerManager.OnTestRunEnd(_currentAssembly);
}
}
#pragma warning restore
11 changes: 6 additions & 5 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@ Changes:
+ Add support for Castle Windsor dependency injection via plugin
+ Auto-register bindings in Castle Windsor plugin

Fixes:
Fixes:
+ Support dynamic assemblies in container initialization #2110
+ Testexplorer doesn't show all tests when using tags on examples in scenario outlines (BUG 9731)
+ Generated code causes CS1591 doc warning #2189

3.4.3

Expand All @@ -21,7 +22,7 @@ API changes:

3.3.74

Fixes:
Fixes:
+ Fix step definition attribute support for the Visual Studio Extension #2065

Changes:
Expand Down Expand Up @@ -97,10 +98,10 @@ Fixes:
Features:
+ .NET Core 3.1 Support

3.1
3.1

Features:
+ First set of cucumber-messages are implemented
+ First set of cucumber-messages are implemented
- TestRunStarted
- TestCaseStarted
- TestCaseFinished
Expand All @@ -113,7 +114,7 @@ Features:
+ Support for Gherkin v6 "Rule" keyword
+ Support discovering step definitions from attributes that are derived from Given,When,Then or StepDefinition attributes (related to https://github.com/techtalk/SpecFlow/issues/1745)

Fixes:
Fixes:
+ AfterTestRun hook can take longer than 100ms on .NET Core https://github.com/techtalk/SpecFlow/issues/1348
+ Adjust parameter names generation in scenario outlines https://github.com/techtalk/SpecFlow/issues/1694
+ specflow.json can be used in SpecFlow+Runner with Process test thread isolation https://github.com/techtalk/SpecFlow/issues/1761
Expand Down

0 comments on commit 6b40b4f

Please sign in to comment.