Silverlight Unit Testing Framework running tests in external class library

Posted by Jonas Follesø on Stack Overflow See other posts from Stack Overflow or by Jonas Follesø
Published on 2010-06-08T07:22:31Z Indexed on 2010/06/13 20:52 UTC
Read the original article Hit count: 265

I'm currently looking into different options for unit testing Silverlight applications. One of the frameworks available is the Silverlight Unit Test Framework from Microsoft (developed primary by Jeff Wilcox, http://www.jeff.wilcox.name/2010/05/sl3-utf-bits/).

One of the scenarios I'm looking into is running the same tests on both Silverlight 3 (PC) and Windows Phone 7. The Silverlight Unit Test Framework (SLUT) runs on both PC and phone. To prevent having to copy or link files I would like to put my tests into a shared test library, that can be loaded by either a WP7 application using the SLUT, or a Silverlight 3 application using SLUT.

So my question is: will SLUT load unit tests defined in a referenced class library, or only in the executing assembly?

© Stack Overflow or respective owner

Related posts about Silverlight

Related posts about unit-testing