By tag: MbUnit
0
kicks
First attempts with Gallio
From time to time I like to check my development workflow and tools to see whether I’m still up to date. This time I thought it might be a nice idea to give Gallio a shot. If you don’t now Gallio: it is a platform to uniformly run unit tests from whatever unit test framework (MbUnit, NUnit, MSTest e...
0
kicks
Comparing Reference Types in Unit Tests.
If you've done some unit testing, you're familiar with Assert.AreEqual method. Have you try to compare two objects that have the same value(s) but the AreEqual method tells you that they are not equal?
0
kicks
Getting Started with Test Driven Development
"Few days ago I started a poll on www.KoffeeKoder.com where I asked which tool do you use for testing your applications. Surprisingly, most of the people are not using any tool for testing. This means that there are more and more applications being developed which are destined to be failed. In ...
0
kicks
First Alpha of MbUnit V3 available
The first release of the new and improved MbUnit is out the door.
This blog goes into more detail.
John
0
kicks
MbUnit Plugin for ReSharper Unit Test Runner
Open source addin which adds MbUnit support to the unit test runner of ReSharper 3.0.
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
Associating Tests With Their Target Objects
Here's a simple way to associate your tests with their target objects using MbUnit.
0
kicks
Efficiently Reusing Your Tests
Here's a great way to efficiently reuse your testing code with the help of MbUnit.
0
kicks
MbUnit 2.4 RTM
"After over 6 months of hard work the MbUnit 2.4 went to RTM tonight. Between the RC and the RTM."
0
kicks
MbUnit 2.3 RTM
"Tonight MbUnit 2.3 RTM was released, you can download it from the MbUnit site. This release is a big one because this is MbUnits first milestone release since the project was first open sourced some 20 months ago. Many folks gave up their time to make this happen, both helping to make MbUnit w...
0
kicks
Tutorial: Extending MbUnit
"This tutorial will cover creating a new type of test fixture attribute and test method attribute. There are basically two reasons for creating extensions: to solve a general need and solve a specific need. The need to create an extension for a specific context happens far more often so we wi...
0
kicks
Tutorial: Extending MbUnit
MbUnit, my favorite xUnit Framework, is easy to extend. This tutorial will cover creating a new type of test fixture attribute and test method attribute.