Skip to content

Commit

Permalink
Move interface ISpecFlowOutputHelper to the TechTalk.SpecFlow namespa…
Browse files Browse the repository at this point in the history
…ce (#2617)

* The interface ISpecFlowOutputHelper is moved to the TechTalk.SpecFlow namespace

* fix build
  • Loading branch information
gasparnagy authored Jul 8, 2022
1 parent a1db0a4 commit 1040417
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace TechTalk.SpecFlow.Infrastructure
namespace TechTalk.SpecFlow
{
public interface ISpecFlowOutputHelper
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Background:
{
private object _lock = new object();
public DisposableContext(TechTalk.SpecFlow.Infrastructure.ISpecFlowOutputHelper outputHelper)
public DisposableContext(ISpecFlowOutputHelper outputHelper)
{
outputHelper.WriteLine("DisposableContext");
}
Expand Down
3 changes: 1 addition & 2 deletions Tests/TechTalk.SpecFlow.Specs/Support/OutputConnector.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using TechTalk.SpecFlow.Infrastructure;
using TechTalk.SpecFlow.TestProjectGenerator;
using TechTalk.SpecFlow.TestProjectGenerator;

namespace TechTalk.SpecFlow.Specs.Support
{
Expand Down
3 changes: 3 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ Changes:
+ Default step definition skeletons are generating cucumber expressions.
+ 'ScenarioInfo.ScenarioAndFeatureTags' has been deprecated in favor of 'ScenarioInfo.CombinedTags'. Now both contain rule tags as well.

Changes:
+ The interface ISpecFlowOutputHelper has been moved to the TechTalk.SpecFlow namespace (from TechTalk.SpecFlow.Infrastructure).

3.10

Features:
Expand Down

0 comments on commit 1040417

Please sign in to comment.