By tag: NUnit
0
kicks
Free Continuous Integration Toolkit
continuous integration (CI) implements continuous processes of applying quality control - small pieces of effort, applied frequently. Continuous integration aims to improve the quality of software, and to reduce the time taken to deliver it, by replacing the traditional practice of applying quality ...
0
kicks
Selenium Two Tutorial using C#/NUnit and InternetExplorerDriver
Tutorial on how to use the latest version of Selenium using C# and NUnit to test websites. The tutorial gives developers a chance to start writing their own tests.
0
kicks
Learning how to harness the power of NUnit RowTest
Taking a look at how you can utilize the power of RowTests within NUnit. By learning how to use RowTests you can reduce the amount of duplicate test code which exists when doing data driven tests.
0
kicks
Eliminating ToList().ForEach() by TDD and Extensions Methods
Following "Program to an interface, not an implementation", you should use IList instead of List. However, you then lose access to some great delegate methods of the List class (e.g. ForEach, ConvertAll). In order to use them you have to first call ToList(). In this post I will use Test Dr...
0
kicks
Building a Nant Script -- Part 2: Adding NUnit tests
Taking a look at how to create a build script with Nant, learning how to add NUnit tests
0
kicks
New ASP.NET MVC Videos and Tutorials
15 new ASP.NET MVC videos were just published at the http://www.ASP.net/mvc website. The first 10 videos are basic tutorials on the ASP.NET MVC framework. If you haven’t had a chance to play with ASP.NET MVC yet, these tutorials are a great introduction.
The second set of 5 videos is part of an o...
0
kicks
Integrate PartCover.Net, Nant and Cruise Control.Net
How to run PartCover with Nant, generate an xml report and integrate the report into CC.Net to get your coverage statistics in your Integration server.
0
kicks
Why Pluggable Applications Fails in NUnit?
I am currently working on a project with a pluggable application. Although, the code was functioning very well it always failed during the NUnit tests, always!
0
kicks
Great C# Sample Application Using Design Patterns and NUnit
This is a nice and simple application that demonstrates uses of NUnit, design patterns and more.
0
kicks
Testing your asp.net pages with NunitAsp and not web controls
Examples to test asp.net pages alwasy use web controls, what if you don't, just follow this tips and you will be running in no time.
0
kicks
Including unit tests in project release
It struck me as a great idea to include NUnit test in the next release of my SQLite query browser. If the program crashes or misbehaves, users can run the tests, find out why and either report to me or fix it themselves.
0
kicks
NUnit Templates and Snippets for Visual Studio 2005 - Now support C#
This handy VSI Package has been updated to now include C# variants of the existing VB items.
It includes project and item templates as well as code snippets to easily create NUnit test projects, fixtures and methods.
0
kicks
Comparing NUnit, MbUnit, MSTest and xUnit.net
With so many frameworks available to writing your unit tests, this article give a good comparaison of the most popular ones.
0
kicks
Learn the new NUnit 2.4 Constraint-Based Assert Model
Instead of using a different Assert method for each different type of assertion (e.g.: Assert.AreEqual() for equality comparison, or Assert.IsTrue() for boolean evaluation), the new Constraint-Based Assert Model introduced in NUnit 2.4 utilizes only one Assert method named Assert.That().