dbones notes
its a geek thing

Active Record

April 23, 2009 01:06 by Dave
if you are writing any data layer code in .Net, please have a look at this presentation by Ayende Oredev 2008 - ALT.NET - Using Active Record to write less code its an hour long, but it can save you lots of time Active Record is built ontop of NHibernate, and its free... wahey for o... [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Getting MbUnit to work with Visual Studio Code Coverage

April 16, 2009 00:13 by Dave
Whilst working on open source project I am detracting away from MsTest in favour for MbUnit (plus this has awesome functionality). The thing was I still wanted to have code coverage within Visual Studio, Its a great way to see what code is being hit by the tests which have been written. Upon resea... [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags:
Categories: Test
Actions: E-mail | Permalink | Comments (0) | Comment RSSRSS comment feed

Struture of a Unit Test

April 14, 2009 22:43 by Dave
A Test fixture can be made of the following Fixture (the following are optional) FixtureSetUp - this is ran once before all the tests (set up the fixture) FixtureTearDown - run after all the tests have completed (this can be used to clean up after all the tests) ... [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags:
Categories: Test
Actions: E-mail | Permalink | Comments (0) | Comment RSSRSS comment feed