-
Categories
- .Net (268)
- .Net 4.0 (61)
- ASP.Net MVC (5)
- Office Interoperability (4)
- Silverlight (15)
- WCF (8)
- Win 32 API (17)
- WPF (28)
- .Net 3.0 / 3.5 (149)
- ASP.Net (59)
- Code coverage (1)
- Javascript (32)
- Miscellaneous (63)
- sharepoint (18)
- SQL Server (16)
- Uncategorized (4)
- Unit Testing (14)
- User Group Activities (25)
- Version Control (8)
- Visual Studio (64)
- Windows 7 (18)
- Windows Forms (61)
- .Net (268)
Tags
.Net .Net 4.0 ASP.Net ASP.Net MVC C# C#.Net Code Coverage CTD Databinding Drawing Events FxCop HTML IIS 7 Javascript K-MUG Kerala Microsoft Users Group LINQ Microsoft Users Group MS Test NUnit Paging Regular Expressions sharepoint Sharepoint API Silverlight Silverlight Object Model SQL Server SQL Server 2008 Team Foundation Server TFS UAC UG Meeting Unit Testing User Group Meeting VB.Net Visual Studio Visual Studio 2010 WCF WIN32 API Windows 7 Windows Forms Windows Live Writer Windows Vista WPF-
Archives
- February 2012
- January 2012
- December 2011
- November 2011
- October 2011
- September 2011
- August 2011
- July 2011
- June 2011
- May 2011
- April 2011
- March 2011
- February 2011
- January 2011
- December 2010
- November 2010
- October 2010
- September 2010
- August 2010
- July 2010
- June 2010
- May 2010
- April 2010
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
- January 2009
- December 2008
- October 2008
- September 2008
- August 2008
- July 2008
- June 2008
- May 2008
- April 2008
- December 2007
- November 2007
- October 2007
- September 2007
- August 2007
- June 2007
- May 2007
- April 2007
-
Category Archives: Unit Testing
How to write an NUnit Addin
From version 2.2.x NUnit supports AddIns. Addins can customize NUnit’s internal behavior such as the creation of tests and their execution. An Addin should to implement the interface NUnit.Core.Extensibility.IAddin, which can be found in the assembly nunit.core.interfaces. Also the NUnit.Core.Extensibility.NUnitAddinAttribute … Continue reading
How to execute ms tests in parallel on multi-cpu / core machines
VS 2010 supports running MS Tests in parallel. Most of the machines available in the market are multi-cpu / core machines. This will help us to increase the number of tests executing in same time, which will reduce total test … Continue reading
Posted in .Net, Unit Testing, Visual Studio
Tagged .Net, MS Test, MS Test Parallel, Unit Testing, Visual Studio, Visual Studio 2010
1 Comment
How to do concurrency testing in .Net
Concurrency is a property of systems in which several computations are executing simultaneously, and potentially interacting with each other. The computations may be executing on multiple cores in the same chip, preemptively time-shared threads on the same processor, or executed … Continue reading
Posted in .Net, .Net 4.0, Unit Testing
Tagged .Net, .Net 4.0, Alpaca, C#, concurrency, Concurrency testing, MS CHESS
1 Comment
MSTest.exe does not deploy all items
Today while working on some regression build issues, me and my lead noticed one problem with MS Tests, we are running MSTest.exe from commandline to execute few tests. The problem was MSTest.exe was is not copying all the referenced assemblies … Continue reading
Posted in .Net, Miscellaneous, Unit Testing
Tagged .Net, C#.Net, DeploymentItem, MSTes, Unit Testing
1 Comment
Debugging NUnit Tests in Visual Studio 2010
If you are using NUnit with .Net 4.0 assemblies in Visual Studio 2010, while debugging, you will get this warning from breakpoints locations, “The breakpoint will not currently be hit. No symbols have been loaded for this document” This issues … Continue reading
Posted in .Net, .Net 4.0, Unit Testing, Visual Studio, Windows 7
Tagged .Net, .Net 4.0, NUnit, Unit Testing, Visual Studio 2010, Windows 7
Leave a comment

