I have written some set of integration tests using XUnit with c#. To complete a single test case takes roughly 7 - 8 minutes and that is expected according to the logics that I'm testing. But the problem is when I run all the tests together(or by right clicking a root of a test tree and select "Run") the tests are start executing. But after about 20 - 30 minutes when I check the tests are stopped in the middle(Ex: if there are 10 test cases to be executed, only 3 or 4 of them are completed and then test execution has stopped). There are no errors reported and rest of the test cases are just on not-ran state. Can someone help me to resolve this issue.
Visual studio test explorer tests are stop executing randomly in the middle of test run
212 Views Asked by Prabodha At
0
There are 0 best solutions below
Related Questions in NUNIT
- SQLite Nunit Tests is showing me data seeded on Application DB Context
- The problem related to unit test CSharp , Moq
- Nunit4 is not working with Json Testcase parameter
- Nunit TestCase attribute with Jagged Array ? c#
- Mocking a record
- why does NUnit test project doesn't recognize as a project in visual studio
- Selenium runs very slow with headed web driver in VS debug mode and NUnit test run
- Playwright test runsettings not taking effect (Headless = False yet still runs Headless)
- How to run all Unit Tests that DON'T have a trait?
- NUnit, Im using mediator, how can a test my mediator Handler using NUnit
- Facing errors during the unit test for sample .NET micro-service (vb)
- NUnit Unit Tests + TestContainers = global `OneTimeSetup` and `OneTimeTearDown`
- When starting a Nunit project from the command line, searches for files along the nunit3-console path
- nunit3-console doesn't see DLLs from Microsoft.AspNETCore.App
- many-to-many relation not returning any
Related Questions in XUNIT
- I want to generate PDF automation report in XUnit using selenium driver and .net in visual studio?
- xUnit test to count list items in service
- How to set global variable to use across multiple classes in test project
- Trouble running xunit tests in .net8
- How to test Process ExitCode value
- How to use XUnit Schema?
- How to define the result of a Task<int> test with Xunit
- xunit and mock returns null instead of string
- RedundantArgumentMatcherException in azure pipeline when field is used and not when using local variable
- XUnit - Stop all tests in collection if one fails
- Testing file uploaded API using xunit
- Empty xUnit Allure report
- Is it possible to view the order in which tests were run in Visual Studio?
- How to mock a Generics<T> class that actually used to fetch data from database
- AutoFixture is unable to create an instance of a class that has a property of type RestSharp.RestResponse
Related Questions in VS-UNIT-TESTING-FRAMEWORK
- How to handle the unit-test assembly load issue in C#
- How would I instantiate a VSTO add-in in a unit test project?
- AssemblyInitialize seems break unit test project in .net 6 (visual studio 2022)
- Difference in Task.WaitAll(result1, result2) and await result1; await result2;
- Need advice on adding test framework (GoogleTest) to a .cpp file having main() function
- How to write unit test for EXCEL Plug-In written in VSTO C#?
- MS Test is testing only last two items in DynamicData object
- Microsoft.VisualStudio.TestTools.UnitTesting test explorer blue exclamation
- Visual studio test explorer tests are stop executing randomly in the middle of test run
- Read a src file in Unit test
- Unable to mock SSH.Net's SFTPClient object for Microsofts Unit test case framework
- Only first DataRow gets executed in MSTest
- MStest all test cases are skipped .net application
- hide test method in child test class
- Mocked a method to return true still returns false
Related Questions in VISUAL-STUDIO-TEST-RUNNER
- Deserialize JSON json URL for query parameters in Specflow not working
- Running Class fixtures in a Release Pipeline
- Run only selective tests on AzureDevops Server 2022 based on Pull-Request
- In VSCode, how do I use Test Runner to run a Java JUnit test within the editor?
- VS Code & TestNG: Running Individual Tests with Parameters
- Could not load file or assembly 'WebDriver, Version=2.53.1.0 when using coded UI Testing
- What makes a Visual Studio project a test project?
- HttpClient.PostAsync() method is hanging forever in C# xUnt test
- How to exclude MVC Razor view from code coverage?
- Visual Studio 2022 Test Explorer doesn't show any tests with a File/New "Test" project
- Test explorer not running all tests using xunit framework
- Visual studio test explorer tests are stop executing randomly in the middle of test run
- VS Code - TestCafe - Change "node" path (Windows)
- Run Selenium UI test on TFS build server for Asp.Net WebForms
- Azure DevOps VSTest,Site Currently unavailable message and times out despite being up
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?