Error running Specflow tests consecutivelySpecFlow + WatiN + NUnit + TeamCity on Windows Server 2008 R2SpecFlow wrongly using NUnitRhino Mocks / Repository testing - NUnit test suite fails, but single mocked unit test passes?Unable to run test in Chrome with SpecflowNUnit will not run consecutive Selenium Webdriver C# testsc# SpecFlow BeforeScenario hooksSpecflow test run failing on windows server 2012 R2Specflow - Unable to share step between feature filesUsing tfs access token in specflow testsSpecflow designer generated code is using old specFlow 1.9.0.77
You cannot touch me, but I can touch you, who am I?
How to safely derail a train during transit?
What is the intuitive meaning of having a linear relationship between the logs of two variables?
Sequence of Tenses: Translating the subjunctive
Where does the Z80 processor start executing from?
Detecting if an element is found inside a container
Does "every" first-order theory have a finitely axiomatizable conservative extension?
How long to clear the 'suck zone' of a turbofan after start is initiated?
How do scammers retract money, while you can’t?
What is paid subscription needed for in Mortal Kombat 11?
Is this version of a gravity generator feasible?
Fastening aluminum fascia to wooden subfascia
when is out of tune ok?
Is the destination of a commercial flight important for the pilot?
Go Pregnant or Go Home
Balance Issues for a Custom Sorcerer Variant
Why escape if the_content isnt?
Closest Prime Number
Was Spock the First Vulcan in Starfleet?
Is there a problem with hiding "forgot password" until it's needed?
What happens if you roll doubles 3 times then land on "Go to jail?"
Large drywall patch supports
Customer Requests (Sometimes) Drive Me Bonkers!
Is expanding the research of a group into machine learning as a PhD student risky?
Error running Specflow tests consecutively
SpecFlow + WatiN + NUnit + TeamCity on Windows Server 2008 R2SpecFlow wrongly using NUnitRhino Mocks / Repository testing - NUnit test suite fails, but single mocked unit test passes?Unable to run test in Chrome with SpecflowNUnit will not run consecutive Selenium Webdriver C# testsc# SpecFlow BeforeScenario hooksSpecflow test run failing on windows server 2012 R2Specflow - Unable to share step between feature filesUsing tfs access token in specflow testsSpecflow designer generated code is using old specFlow 1.9.0.77
I was wondering if anybody could help with an issue I have come across, I have recently added to my test framework the sharing of a value using feature content
This has been placed in the [BeforeScenario] trigger
FeatureContext.Current.Add("CreatedUser", createdUser);
I then clean this up in the [AfterScenario] with
FeatureContext.Current.Remove("CreatedUser");
Since adding this I am unable to run more then 1 test, if I run the tests individually (1 by 1) then they execute with no issue.
If I select a few tests to run from visual studio, the first one runs with no issue and the next test will always fail with the following error.
Message: System.Collections.Generic.KeyNotFoundException : The given key was not present in the dictionary.
TearDown : System.NullReferenceException : Object reference not set to an instance of an object.
I added the remove line as i thought the feature context was being carried from test to test and causing an issue but with or without the removal i am getting this error.
Any help is appreciated
nunit specflow
add a comment |
I was wondering if anybody could help with an issue I have come across, I have recently added to my test framework the sharing of a value using feature content
This has been placed in the [BeforeScenario] trigger
FeatureContext.Current.Add("CreatedUser", createdUser);
I then clean this up in the [AfterScenario] with
FeatureContext.Current.Remove("CreatedUser");
Since adding this I am unable to run more then 1 test, if I run the tests individually (1 by 1) then they execute with no issue.
If I select a few tests to run from visual studio, the first one runs with no issue and the next test will always fail with the following error.
Message: System.Collections.Generic.KeyNotFoundException : The given key was not present in the dictionary.
TearDown : System.NullReferenceException : Object reference not set to an instance of an object.
I added the remove line as i thought the feature context was being carried from test to test and causing an issue but with or without the removal i am getting this error.
Any help is appreciated
nunit specflow
Did you debug your case? Select 2 tests, set a breakpoint in [AfterScenario] and [BeforeScenario] and investigate the content of FeatureContext.Current. Also have a look at the complete callstack where the exception is thrown. It would be fine if you update your question with a minimal code example.
– Jeroen Heier
Mar 23 at 15:43
Yesi did debug this and found it was being thrown before hitting my code, which is why I did not place a coding example as I did not think this was going to be useful.
– Brian Mitchell
12 hours ago
add a comment |
I was wondering if anybody could help with an issue I have come across, I have recently added to my test framework the sharing of a value using feature content
This has been placed in the [BeforeScenario] trigger
FeatureContext.Current.Add("CreatedUser", createdUser);
I then clean this up in the [AfterScenario] with
FeatureContext.Current.Remove("CreatedUser");
Since adding this I am unable to run more then 1 test, if I run the tests individually (1 by 1) then they execute with no issue.
If I select a few tests to run from visual studio, the first one runs with no issue and the next test will always fail with the following error.
Message: System.Collections.Generic.KeyNotFoundException : The given key was not present in the dictionary.
TearDown : System.NullReferenceException : Object reference not set to an instance of an object.
I added the remove line as i thought the feature context was being carried from test to test and causing an issue but with or without the removal i am getting this error.
Any help is appreciated
nunit specflow
I was wondering if anybody could help with an issue I have come across, I have recently added to my test framework the sharing of a value using feature content
This has been placed in the [BeforeScenario] trigger
FeatureContext.Current.Add("CreatedUser", createdUser);
I then clean this up in the [AfterScenario] with
FeatureContext.Current.Remove("CreatedUser");
Since adding this I am unable to run more then 1 test, if I run the tests individually (1 by 1) then they execute with no issue.
If I select a few tests to run from visual studio, the first one runs with no issue and the next test will always fail with the following error.
Message: System.Collections.Generic.KeyNotFoundException : The given key was not present in the dictionary.
TearDown : System.NullReferenceException : Object reference not set to an instance of an object.
I added the remove line as i thought the feature context was being carried from test to test and causing an issue but with or without the removal i am getting this error.
Any help is appreciated
nunit specflow
nunit specflow
asked Mar 21 at 15:55
Brian MitchellBrian Mitchell
13810
13810
Did you debug your case? Select 2 tests, set a breakpoint in [AfterScenario] and [BeforeScenario] and investigate the content of FeatureContext.Current. Also have a look at the complete callstack where the exception is thrown. It would be fine if you update your question with a minimal code example.
– Jeroen Heier
Mar 23 at 15:43
Yesi did debug this and found it was being thrown before hitting my code, which is why I did not place a coding example as I did not think this was going to be useful.
– Brian Mitchell
12 hours ago
add a comment |
Did you debug your case? Select 2 tests, set a breakpoint in [AfterScenario] and [BeforeScenario] and investigate the content of FeatureContext.Current. Also have a look at the complete callstack where the exception is thrown. It would be fine if you update your question with a minimal code example.
– Jeroen Heier
Mar 23 at 15:43
Yesi did debug this and found it was being thrown before hitting my code, which is why I did not place a coding example as I did not think this was going to be useful.
– Brian Mitchell
12 hours ago
Did you debug your case? Select 2 tests, set a breakpoint in [AfterScenario] and [BeforeScenario] and investigate the content of FeatureContext.Current. Also have a look at the complete callstack where the exception is thrown. It would be fine if you update your question with a minimal code example.
– Jeroen Heier
Mar 23 at 15:43
Did you debug your case? Select 2 tests, set a breakpoint in [AfterScenario] and [BeforeScenario] and investigate the content of FeatureContext.Current. Also have a look at the complete callstack where the exception is thrown. It would be fine if you update your question with a minimal code example.
– Jeroen Heier
Mar 23 at 15:43
Yesi did debug this and found it was being thrown before hitting my code, which is why I did not place a coding example as I did not think this was going to be useful.
– Brian Mitchell
12 hours ago
Yesi did debug this and found it was being thrown before hitting my code, which is why I did not place a coding example as I did not think this was going to be useful.
– Brian Mitchell
12 hours ago
add a comment |
1 Answer
1
active
oldest
votes
I eventually managed to fix this issue by removing the Allure NuGet packages.
I had previously installed
- Specflow.Allure
- Allure.Commons
This package was causing the issue, I am not sure of the reason but after removing this error stopped occurring.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55284440%2ferror-running-specflow-tests-consecutively%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I eventually managed to fix this issue by removing the Allure NuGet packages.
I had previously installed
- Specflow.Allure
- Allure.Commons
This package was causing the issue, I am not sure of the reason but after removing this error stopped occurring.
add a comment |
I eventually managed to fix this issue by removing the Allure NuGet packages.
I had previously installed
- Specflow.Allure
- Allure.Commons
This package was causing the issue, I am not sure of the reason but after removing this error stopped occurring.
add a comment |
I eventually managed to fix this issue by removing the Allure NuGet packages.
I had previously installed
- Specflow.Allure
- Allure.Commons
This package was causing the issue, I am not sure of the reason but after removing this error stopped occurring.
I eventually managed to fix this issue by removing the Allure NuGet packages.
I had previously installed
- Specflow.Allure
- Allure.Commons
This package was causing the issue, I am not sure of the reason but after removing this error stopped occurring.
answered 12 hours ago
Brian MitchellBrian Mitchell
13810
13810
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55284440%2ferror-running-specflow-tests-consecutively%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Did you debug your case? Select 2 tests, set a breakpoint in [AfterScenario] and [BeforeScenario] and investigate the content of FeatureContext.Current. Also have a look at the complete callstack where the exception is thrown. It would be fine if you update your question with a minimal code example.
– Jeroen Heier
Mar 23 at 15:43
Yesi did debug this and found it was being thrown before hitting my code, which is why I did not place a coding example as I did not think this was going to be useful.
– Brian Mitchell
12 hours ago