It would be really nice to speed up testing to be able to run tests on multiple machines (this is actually Acceptance/Integration tests, not Unit tests...). Is there an existing ea开发者_StackOverflow
I have projects set up as follows: Data - repository. Service Web I\'m using NUnit, and I\'m testing a method that is in Service Project. When I first used MSTest to automatically setup these test
I wonder is anyone have tryed using Grensesnitt for unit-testing of classes that all follow the same interface. I have a problem with classes that don\'t have parameterless constructors. I know ther开
How can i write test case for action filters? I am using forms authentication. I have base controller decorated with RequiresAuthentication action filter. When i execute the controller\'s test case, i
I have a test like this: [TestCase(12, Result= typeof(mytype))] public mytype GetById(int id) { yada, yada, yada.
I installed Resharper 5 with visual studio 2010 Team system with NUnit. It finds NUnit and shows 2 types of tests in the options开发者_如何学编程: MSTest and NUnit.
I\'m running NUnit tests from Resharper. I want to track exe开发者_StackOverflow中文版cution process so my question is where can I find logs produced by my application?
I have a view model class as follows: public class MyViewModel { // Other properties...... public IEnumerable<SelectListItem> SecurityQuestions { get; set; }
I am following the Scott hanselman\'s blog but here i am getting httpcontext.current 开发者_如何学JAVAas null. Sometime back i do remember that i wrote some code to fake Httpcontext.current. but unfo
I have a controller called NewsController, the constructor of this controller receives an INewsService as parameter.