-
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.
Using steps defined in other assemblies.
Enable writing steps in VB. Cleaning up ContextInjection
- Loading branch information
jbandi
committed
Feb 11, 2010
1 parent
0c0b268
commit 20461dc
Showing
23 changed files
with
827 additions
and
38 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
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,30 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<configuration> | ||
<configSections> | ||
<section name="specFlow" type="TechTalk.SpecFlow.Configuration.ConfigurationSectionHandler, TechTalk.SpecFlow"/> | ||
</configSections> | ||
|
||
<specFlow> | ||
<language feature="en" tool="en" /> | ||
|
||
<unitTestProvider name="NUnit"/> | ||
|
||
<generator allowDebugGeneratedFiles="false" /> | ||
|
||
<runtime detectAmbiguousMatches="true" | ||
stopAtFirstError="false" | ||
missingOrPendingStepsOutcome="Inconclusive" /> | ||
|
||
<trace traceSuccessfulSteps="true" | ||
traceTimings="false" | ||
minTracedDuration="0:0:0.1" | ||
listener="TechTalk.SpecFlow.Tracing.DefaultListener, TechTalk.SpecFlow" | ||
/> | ||
|
||
<stepAssemblies> | ||
<stepAssembly file="..\..\ExternalSteps\ExternalStepsVB\bin\debug\ExternalStepsVB.dll" /> | ||
<stepAssembly file="..\..\ExternalSteps\ExternalStepsCS\bin\debug\ExternalStepsCS.dll" /> | ||
</stepAssemblies> | ||
|
||
</specFlow> | ||
</configuration> |
81 changes: 53 additions & 28 deletions
81
Tests/FeatureTests/ContextInjection/ContextInjection.feature.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,9 @@ | ||
Feature: External Step Definitions | ||
In order to modularize my solution | ||
As a bdd enthusiast | ||
I want to use step definitions from other assemblies | ||
|
||
Scenario: Steps defined in an external VB project and an external c-sharp project | ||
Given I have external step definitions in a separate assembly referenced by this project | ||
When I call those steps | ||
Then the scenario should pass |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.