I came across this yesterday and found that App.xaml
was not configured correctly. Using guesswork (i.e., which interfaces implements IValueConverter
?), I found this solution that seems to work very well.
First add this namespace to the <Application>
namespace:
xmlns:Client="clr-namespace:Microsoft.Silverlight.Testing.Client;assembly=Microsoft.Silverlight.Testing">
Then add this to <Application>
:
<Application.Resources> <Client:TypeNameVisibilityConverter x:Name="typeNameConverter" /> <Client:FontWeightConverter x:Name="fontWeightConverter" /> </Application.Resources>
I hope this is useful to someone.
I can confirm that the Michael Dumont solution also works, but you cannot view the details of the test run that are annoying when you try to view information about broken tests when you do not have a debugger connected for any reason.
source share