dbones notes
its a geek thing

Community Choice awards

June 30, 2009 13:34 by Dave
Looks like source forge have opened the voting for your favorite projects/programs. Place your vote  

Be the first to rate this post

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

Rowtest with MbUnit

June 30, 2009 00:29 by Dave
I wrote a test which used the Row test attribute, which is a nice feature. This test looks at different states of a form and then tests if the correct email call is made. very similar to the previos post [code:c#] [Test] [Row(new object[] { "State Changed", "To: 2, from... [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 (1) | Comment RSSRSS comment feed

Mocking a void function, and ensuring it was called

June 25, 2009 22:59 by Dave
One thing I wanted to do was to ensure my code was calling a function with the correct inputs. However the function did not return anything (void) and I did not want to write a mock object from scratch which had a verify method was called (that seemed like re-writing the wheel). So I looked a litt... [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

A Little more on the MVC Routing

June 22, 2009 23:20 by Dave
Couple of links (Which I need to have a further read of) Legacy Url Routing - converting your ASP.net application to a MVC, how to route the old aspx page to redirect to the MVC required view. Asp.Net Routing Debugger - allows you to type in URLs and it shows which routes match it... [More]

Be the first to rate this post

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

Routing - my simple test

June 22, 2009 22:02 by Dave
ASP.NET MVC comes with a routing engine, and from my understanding this will be applied to ASP.Net (I may be wrong on that). however thats not the point of this post. Today I wanted to note down some simple information about the routing engine. The routing by default is located in the Global... [More]

Be the first to rate this post

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