Category: <span>Programming</span>

Learning NUnit In Easy Way For Beginners

NUnit is a test framework for all Microsoft .Net language. NUnit is derived from JUnit, a unit test framework for Java. It is written in C# and helps you to execute unit tests for code written in .net. At the time of writing this article, the most recent version of NUnit was 2.6.2. NUnit supports many features but in this article, I explain only those features which are actually required by black box testers. I intend to write another article on advanced NUnit where I will cover the features in depth. GETTING STARTED: Let’s write a simple banking program. [sourcecode language=”csharp”] namespace …