dbones notes
its a geek thing

The list of TDD anti patterns

December 4, 2009 17:32 by Dave
when writting unit tests you may wonder, what im i actually doing? I follow the AAA pattern, well try to ;).  anyway I found this link on StackOverflow, which has a list of anti patterns for TDD (Unit testing) http://blog.james-carr.org/2006/11/03/tdd-anti-patterns/ well worth... [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

Unit testing presentation

November 26, 2009 12:20 by Dave
Small presentation on Unit testing, so find strong coupling. [More]

Be the first to rate this post

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

Good Article series for Sharp Architecture

November 24, 2009 15:14 by Dave
a number of articles by a development team whom implemented a web site using Sharp Architecture Bill's link

Be the first to rate this post

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

Example Architectures - for .Net

July 19, 2009 18:23 by Dave
I fnd it fun to look at Architecture, as when it comes to building web applications you do not want to re invent the wheel every time. before recently there where not many designs for using .Net in a n-tier approach which did not contain DataSets. If you are like me and come from a OO back ground ... [More]

Be the first to rate this post

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

Resharper Cheet Sheets

July 2, 2009 22:54 by Dave
The tool to rule them all Link to the Documents - this page has 2 links to the Keyboard mappings, to find out which setting you have in Visual Studio 2008 ReSharper -> Options in the "ReSharper - Options" window, choose the "General" tab, and you will se... [More]

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

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