views:

65

answers:

2

How to unit test Silverlight 3 Out-Of-Browser application?

A: 

Since you are into beta stuff (Silverlight 3), are you willing to consider using VS 2010? If so, take a look at Mathew Aniyan's blog. He has lots of information on data driven Coded UI Tests.

JonnyBoats
+2  A: 

Roy Osherove has created an open source framework to test silverlight controls It called SilverUnit and it uses Typemock in order to intercept .NET calls and fake their behaviour.

SilverUnit lets you test your controls using simple unit testing framework no browser required.

Seems like a good solution for what you're looking for.

Dror Helper