- Follow MSDev.pro blog on WordPress.com
Volg ons
-
Recent Posts
Categories
Recent Comments
furtdsolinopv on Architecture of a Polyglot Azu… furtdsolinopv on Structuring your Excel –… Gaston on Areas in ASP.NET Core Gaston on Areas in ASP.NET Core MLockwood on Areas in ASP.NET Core Archives
- April 2018
- February 2018
- August 2017
- April 2017
- March 2017
- January 2017
- October 2016
- September 2016
- August 2016
- July 2016
- May 2016
- April 2016
- March 2016
- February 2016
- January 2016
- December 2015
- October 2015
- November 2014
- September 2014
- April 2014
- September 2012
- August 2012
- October 2011
- July 2011
- May 2011
- April 2011
- February 2010
- December 2009
- November 2009
- October 2009
- August 2009
- July 2009
- June 2009
- May 2009
- November 2008
- May 2008
- February 2008
- January 2008
Category Archives: Debugging
Knockout, self, this, TypeScript. Are you still following?
Introduction I’m working on an MVC application with simple CRUD operations. I want the following functionality (don’t mind the Flemish (Dutch) titles): Remember, I’m “graphically handicapped”, so I’m afraid that my users will have to do with the standard Bootstrap … Continue reading
Posted in Codeproject, Debugging, Development, JavaScript, TypeScript
Tagged self, this
Leave a comment
Unit Testing your Repositories–the code
In the previous post I started to write about how to set up your unit tests in the repository code. The title was (maybe a bit misleading) “Unit testing your Repositories”. So I had to promise to write an article … Continue reading
Posted in .Net, Codeproject, Debugging, Development, Entity Framework, Testing
Tagged Entity framework; Excel
1 Comment
Let IntelliTest generate your tests!
We corrected our function to calculate the GCD so that it now runs correctly. But is the function correct in all the cases? Have we really tested everything? It would be nice if there was a tool that could tell … Continue reading
Posted in .Net, Codeproject, Debugging, Development, Methodology, Testing
Tagged IntelliTest;Pex;Assert;GCD;TDD
Leave a comment
How to set up a Parameterized Unit Test
In my previous post we saw how to set up unit testing using Visual Studio. The code we want to test is a (simple) function to calculate the greatest common divisor, and we wrote our first test. The test we … Continue reading
Posted in .Net, Codeproject, Debugging, Development, Methodology, Testing
Tagged CSV, Data source, GCD, Parameterized Unit Test, TDD
Leave a comment
Rediscovered the Debug attributes
There are 2 attributes that can easily be applied to your classes / methods to modify the behavior at debugging time. The attributes don’t change the runtime behavior of your code. [DebuggerDisplay] This attribute defines how you’ll see a type … Continue reading