-
Subscribe
Categories
-
Recent Posts
Recent Comments
Tags
dotnetkicks.com
Author Archives: aschlapsi
RowTests with NUnit 2.4
I had some time last week and therefore I played around with the new extensibility features of NUnit 2.4. I wanted to know, how difficult it is to implement the RowTest feature of MbUnit as NUnit Addin. Two hours later the RowTest Extension for NUnit was ready. I released the extension under the MIT license. [...]
Decorate Your Tests
In my last post I showed you how to write a minimal NUnit addin. It didn’t do anything useful, so let’s see what we can do with test decorators. What Is a Test Decorator? The Decorator Pattern describes a design for attaching additional responsibilities to an object dynamically. It is also known as Wrapper. Test [...]
How To Build an NUnit Addin
Since version 2.2.x of NUnit it was possible to build your own core extensions, but this feature was experimental. With the latest release Addins are officially supported. Core extensions can customize NUnit’s internal behavior such as the creation of tests and their execution. Technorati Tags: NUnit, nunitaddin, unit-testing
New Version of NUnit
Charlie Poole released NUnit 2.4.1 yesterday. It just fixes some issues and has some minor improvements. I plan to examine the new extensibility features of NUnit 2.4. So expect some posts about it during the next weeks. Technorati Tags: NUnit, unit-testing
IronRuby Follows IronPython
Great news for dynamic language enthusiasts: Microsoft will implement Ruby on top of .NET. It will be called IronRuby and it will use the new Dynamic Language Runtime (DLR), a great platform for authoring and hosting dynamic languages. You can see a demo here showing interoperation between Ruby, Python, JavaScript, and Visual Basic. The demo [...]
Posted in .NET Development Tagged dlr, ironpython, ironruby, mono, python, Ruby, silverlight Leave a comment

RowTestExtension 1.1.0 released