Unit Testing: DateTime.Now
I have some unit tests that expects the ‘current time’ to be different than DateTime.Now and I don’t want to change the computer’s … Read more
I have some unit tests that expects the ‘current time’ to be different than DateTime.Now and I don’t want to change the computer’s … Read more
How can this test fail? [TestMethod] public void Get_Code() { var expected = new List<int>(); expected.AddRange(new [] { 100, 400, 200, 900, 2300, … Read more
I can’t run my unit tests. I have the next error: Your project does not reference “.NETFramework,Version=v4.6.2” framework. Add a reference to “.NETFramework,Version=v4.6.2” … Read more
When I use MSTest Framework, and copy the code that Selenium IDE generated for me, MSTest doesn’t recognize [TearDown] and [SetUp]. What is … Read more
Visual Studio allows unit testing of private methods via an automatically generated accessor class. I have written a test of a private method … Read more
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, … Read more
I am trying to run my tests on TeamCity which is currently installed on my machine. System.InvalidOperationException: The Entity Framework provider type ‘System.Data.Entity.SqlServer.SqlProviderServices, … Read more
How do I use Assert (or other Test class) to verify that an exception has been thrown? 24 s 24 For “Visual Studio … Read more