live-unit-tests

Crashing Visual Studio Live Unit Testing

那年仲夏 提交于 2021-02-10 08:08:31
问题 I´m a new user in stackoverflow and this is my problem: As part of my work, we recently installed VS 2017 Enterprise Edition. Everything was fine untill few weeks ago the Live Unit Testing module stop working. Does enyone was able to resolve this kind of problems? This is the output console: [17:26:23.170 Info] Live Unit Testing started. [17:26:23.229 Error] - FatalError - System.ArgumentNullException: Value cannot be null. Parameter name: key at System.Collections.Generic.Dictionary'2.Insert

Crashing Visual Studio Live Unit Testing

喜你入骨 提交于 2021-02-10 08:07:28
问题 I´m a new user in stackoverflow and this is my problem: As part of my work, we recently installed VS 2017 Enterprise Edition. Everything was fine untill few weeks ago the Live Unit Testing module stop working. Does enyone was able to resolve this kind of problems? This is the output console: [17:26:23.170 Info] Live Unit Testing started. [17:26:23.229 Error] - FatalError - System.ArgumentNullException: Value cannot be null. Parameter name: key at System.Collections.Generic.Dictionary'2.Insert

Crashing Visual Studio Live Unit Testing

北城余情 提交于 2021-02-10 08:05:04
问题 I´m a new user in stackoverflow and this is my problem: As part of my work, we recently installed VS 2017 Enterprise Edition. Everything was fine untill few weeks ago the Live Unit Testing module stop working. Does enyone was able to resolve this kind of problems? This is the output console: [17:26:23.170 Info] Live Unit Testing started. [17:26:23.229 Error] - FatalError - System.ArgumentNullException: Value cannot be null. Parameter name: key at System.Collections.Generic.Dictionary'2.Insert

Visual studio 2017 Live Unit Testing does not work

懵懂的女人 提交于 2020-01-04 03:36:13
问题 Hello I'm getting a very strange exception (object reference not set to an instance of object) when using Visual studio 2017 Live Unit Testing if I run this test through Test Explorer->Run All all works fine and it’s also work in debugging but Live Unit Testing fall. Test Project 来源: https://stackoverflow.com/questions/43591499/visual-studio-2017-live-unit-testing-does-not-work

Live unit testing exclude tests

江枫思渺然 提交于 2019-12-05 13:31:13
I know it is possible to exclude the whole test project(s) from Live Unit Testing by right clicking on the test project and selecting the "Live Unit Testing" context menu. But in my solution I have some long running/resource intensive tests, which I would like to exclude. Is it possible to exclude individual tests? Easiest method is right clicking on the method in the editor view and selecting Live Unit Testing and Exclude. You can also do it programatically with attributes. For xUnit: [Trait("Category", "SkipWhenLiveUnitTesting")] For NUnit: [Category("SkipWhenLiveUnitTesting")] For MSTest: