Andrew Stopford's Weblog

poobah

News

Articles

Family

Old Blogs

Browse by Tags

All Tags » NUnit (RSS)
NUnit 2.5 RTM
Charlie and the NUnit team have been working hard on NUnit 2.5 and over the last weekend the NUnit 2.5 RTM was released , a huge kudos to Charlie and the team on getting this out. NUnit 2.5 has loads of new goodies , parameterized tests (like MbUnit)...
Posted: May 05 2009, 11:00 PM by andrewstopford | with 2 comment(s)
Filed under: ,
Write your own NUnit constraint (in VB) - Part 2
So in part 1 we created our own constraint and want some of that syntax sugar, the Is helper class uses static (shared) methods to create the constraints so we either hack the NUnit source or try something else. What I ended up doing may not be ideal...
Posted: Aug 06 2008, 12:35 PM by andrewstopford | with no comments
Filed under: ,
Write your own NUnit constraint (in VB) - Part 1
NUnit constraints offer a different style to crafting your unit tests, rather than write. Assert.IsEqual( expected,actual ) you could write Assert.That( expected , Is.EqualTo( actual )) Or in VB as Is is a reserved keyword - Assert.That( expected , [Is...
Posted: Aug 05 2008, 05:32 PM by andrewstopford | with no comments
Filed under: ,
NUnit constraints broke my R#
After writing some NUnit tests with the Assert.That constriant syntax my code file was looking a bit messy so I ran R# 'cleanup' and it threw "JetBrains.Util.LoggerException: Cannot create IReferenceExpresion for 'Is' ". After that right click was kept...
AgileNorth 2007
Next month I'll be talking about MbUnit at the AgileNorth 2007 conference , this is a one day event to be held in Manchester, UK and will feature sessions from folks such as ThoughtWorks and Exoftware. MbUnit folks will also be on the road into the new...
NUnit 2.4 RC
Charlie and the NUnit team have been hard at work with the fruits of labour seeing light of day in the RC of NUnit 2.4 . I note with interest that the constraint based asserts have been added in this RC. On the TDD list this syntax was debated in some...
MbUnit and NUnit VS templates
Dan Maharry has created some great VS templates for both MbUnit and NUnit . I hope to get a version of these into the MbUnit distro so any and all feedback on these would be great to hear.
BDD syntax for NUnit
Interesting work from Scott Bellware on adding BDD syntaxt to NUnit .
Posted: Dec 18 2006, 09:34 AM by andrewstopford | with no comments
Filed under: ,
OSS in .NET
I was going to comment on Jeremys post on OSS in the Microsoft world but decided to write it up here. While I agree that OSS in the .NET world has a some way to go, it's getting better and better all the time. The very project I lead, MbUnit , is...
The DataModel-View-ViewModel pattern
Dan Crevier has series of posts on the DM-V-VM pattern , including how to implement it and how ot test it. Porting to MbUnit or NUnit would be a change of referance and using statement and from [ TestClass ] public class StockModelTests [ TestMethod ...
More Posts Next page »