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













0















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










share|improve this question






















  • 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















0















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










share|improve this question






















  • 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













0












0








0








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










share|improve this question














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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










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

















  • 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












1 Answer
1






active

oldest

votes


















0














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.






share|improve this answer






















    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
    );



    );













    draft saved

    draft discarded


















    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









    0














    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.






    share|improve this answer



























      0














      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.






      share|improve this answer

























        0












        0








        0







        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.






        share|improve this answer













        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.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered 12 hours ago









        Brian MitchellBrian Mitchell

        13810




        13810





























            draft saved

            draft discarded
















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

            Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

            Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript