-
Notifications
You must be signed in to change notification settings - Fork 750
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
32 changed files
with
11,135 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
Reporting/NUnitExecutionReport/NUnitExecutionReportParameters.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
using System.IO; | ||
|
||
namespace TechTalk.SpecFlow.Reporting.NUnitExecutionReport | ||
{ | ||
public class NUnitExecutionReportParameters : ReportParameters | ||
{ | ||
public string LabelledTestOutput { get; private set; } | ||
public string XmlTestResult { get; private set; } | ||
|
||
public NUnitExecutionReportParameters(string projectFile, string xmlTestResult, string labelledTestOutput, string outputFile, string xsltFile) | ||
: base(projectFile, outputFile, xsltFile) | ||
{ | ||
this.XmlTestResult = Path.GetFullPath(xmlTestResult); | ||
this.LabelledTestOutput = Path.GetFullPath(labelledTestOutput); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
using System.IO; | ||
|
||
namespace TechTalk.SpecFlow.Reporting | ||
{ | ||
public abstract class ReportParameters | ||
{ | ||
public string XsltFile { get; private set; } | ||
public string OutputFile { get; private set; } | ||
public string ProjectFile { get; private set; } | ||
|
||
protected ReportParameters(string projectFile, string outputFile, string xsltFile) | ||
{ | ||
this.ProjectFile = projectFile; | ||
this.OutputFile = Path.GetFullPath(outputFile); | ||
this.XsltFile = Path.GetFullPath(xsltFile); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
Reporting/StepDefinitionReport/StepDefinitionReportParameters.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
|
||
namespace TechTalk.SpecFlow.Reporting.StepDefinitionReport | ||
{ | ||
public class StepDefinitionReportParameters : ReportParameters | ||
{ | ||
public string BinFolder { get; private set; } | ||
public bool ShowBindingsWithoutInsance { get; private set; } | ||
|
||
public StepDefinitionReportParameters(string projectFile, string outputFile, string xsltFile, string binFolder, bool showBindingsWithoutInsance) | ||
: base(projectFile, outputFile, xsltFile) | ||
{ | ||
BinFolder = binFolder; | ||
ShowBindingsWithoutInsance = showBindingsWithoutInsance; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<configuration> | ||
<configSections> | ||
<section name="specFlow" type="TechTalk.SpecFlow.Configuration.ConfigurationSectionHandler, TechTalk.SpecFlow"/> | ||
</configSections> | ||
|
||
<specFlow> | ||
<unitTestProvider name="NUnit"/> | ||
</specFlow> | ||
</configuration> |
Oops, something went wrong.