Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

NUnit with Windows Phone 7 [closed]

I'd like to unit test my Windows Phone 7 libraries with NUnit.

Is there a version of NUnit compatible with Windows Phone 7?

like image 990
James Newton-King Avatar asked Aug 31 '10 04:08

James Newton-King


1 Answers

You might also look at http://unitdriven.codeplex.com - it is a Silverlight and WP7 unit test framework/runner, that also has an add-in DLL for nunit/mstest so you can write tests and have the same test code run in .NET, Silverlight and WP7.

As long as you are testing non-async behaviors, UnitDriven is pretty compatible with nunit (we built it to run a few hundred pre-existing nunit tests). It does have its own model for async tests - again specifically designed so the same test code runs in .NET, SL and WP7.

like image 125
Rockford Lhotka Avatar answered Nov 13 '22 16:11

Rockford Lhotka