I am pretty new to Team City and Jet Brains products in general. I\'m using MSTest for running some tests (VS Unit Tests).I was able to configure Team City to run the tests using a metadata file and
Visual Studio has two default keybindings for unit testing :- CTRL-R then CTRL-T : Debug the current unit test \'context\'
When running MSTest from Visual Studio - the unit test execution time is relatively quick. When running MSTest from the command line, with /testsettings flag - the execution takes forever and that i
I have a C# based assembly with a class A for which I want to create some unit tests using MS Test in VS 2010. This assembly has a reference to a C++ CLI based assembly, and the class A above calls a
When creating a generic base test class in MSTest, and inheriting from it, I\'m unable to run the tests of all the inheriting classes.
So, I have the following problem (using C#): I have two private fields in a class, one that saves the original state of a field and one that saves the updated state.
I am trying to use the PartCover (v.2.3.0.36319) to measure code coverage on assemblies from unit tests run in MSTest. I can get successful reports on all assemblies except one named SystemLogger. Ive
consider the following test class: [TestClass] public class ExampleTests { [TestMethod] public void FileDoesNotExists()
We need to be able to pass a server address into MSTest command line for our testing suite that is开发者_Go百科 invoke by TeamCity Continuous Integration (CI) software.
Is there a way to run only failed tests from a previous test run in TeamCity? Even better, is there a way to run only selected tests in some way?Like if we want to run only certain test classes.