Nunit can be extended in many way writing simple addins, I never tried to write an addin but since Nunit have some limitations I do not like I tried to create a very simple addin that permits me to randomize execution of tests. Randomization is really an interesting stuff because it helps to find interacting [...]
SetUp and TearDown are two attributes used to mark two methods as prologue and epilogue for each test of a fixture. Here is a typical use in test based on Rhino Mock: private MockRepository mrepo; [SetUp] public void SetUp() { mrepo = new MockRepository(); } [TearDown] public void TearDown() { mrepo.VerifyAll(); } With these two [...]
Asp.net is a great environment to quickly develop sites, but if you does not know what you are doing you can get hurt with poor performances. Today I was analyzing a web page of a site because a developer reported to me that it is really really slow (more than 10 seconds to render), here [...]
Continue reading about Analyze a slow asp.net web page, tale of





