<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Updated Silverlight Unit Test Framework bits for Windows Phone and Silverlight 3</title>
	<atom:link href="http://www.jeff.wilcox.name/2010/05/sl3-utf-bits/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jeff.wilcox.name/2010/05/sl3-utf-bits/</link>
	<description>Silverlight, rich client apps and web development</description>
	<lastBuildDate>Mon, 06 Feb 2012 19:09:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Pkzphotos</title>
		<link>http://www.jeff.wilcox.name/2010/05/sl3-utf-bits/comment-page-1/#comment-8098</link>
		<dc:creator>Pkzphotos</dc:creator>
		<pubDate>Fri, 27 Jan 2012 04:39:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeff.wilcox.name/2010/05/sl3-utf-bits/#comment-8098</guid>
		<description>I&#039;ve been struggling to get the framework to run in Express Edition or VS2010 and finally downloaded WP7UnitTestsSampleApp from http://smartypantscoding.com/a-cheat-sheet-for-unit-testing-silverlight-apps-on-windows-phone-7. That worked in both editions.


Turns out the test project must be  targe Windows OS 7.0 or you get:
Cannot find a Resource with the Name/Key typeNameConverter [Line: 47 Position: 24]


Happy coding.

</description>
		<content:encoded><![CDATA[<p>I&#8217;ve been struggling to get the framework to run in Express Edition or VS2010 and finally downloaded WP7UnitTestsSampleApp from <a href="http://smartypantscoding.com/a-cheat-sheet-for-unit-testing-silverlight-apps-on-windows-phone-7" rel="nofollow">http://smartypantscoding.com/a-cheat-sheet-for-unit-testing-silverlight-apps-on-windows-phone-7</a>. That worked in both editions.</p>
<p>Turns out the test project must be  targe Windows OS 7.0 or you get:<br />
Cannot find a Resource with the Name/Key typeNameConverter [Line: 47 Position: 24]</p>
<p>Happy coding.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: facy</title>
		<link>http://www.jeff.wilcox.name/2010/05/sl3-utf-bits/comment-page-1/#comment-7917</link>
		<dc:creator>facy</dc:creator>
		<pubDate>Mon, 24 Oct 2011 21:30:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeff.wilcox.name/2010/05/sl3-utf-bits/#comment-7917</guid>
		<description>Hello Jeff,
I would like to use your Unit Framework but unfortunatley Visual Studio throws an error while creating the testPage:

XamlParseException occured
Cannot find a Resource with the Name/Key typeNameConverter [Line: 47 Position: 24]

Line 47 refers to the initial CreateTestPage:

private void MainPage_Loaded(object sender, RoutedEventArgs e) 
        { 
            SystemTray.IsVisible = false; 

47:        var testPage = UnitTestSystem.CreateTestPage() as IMobileTestPage; 
            BackKeyPress += (x, xe) =&gt; xe.Cancel = testPage.NavigateBack(); 
            (Application.Current.RootVisual as PhoneApplicationFrame).Content = testPage; 
              
        } 

Hope you can help me out!
thank you!</description>
		<content:encoded><![CDATA[<p>Hello Jeff,<br />
I would like to use your Unit Framework but unfortunatley Visual Studio throws an error while creating the testPage:</p>
<p>XamlParseException occured<br />
Cannot find a Resource with the Name/Key typeNameConverter [Line: 47 Position: 24]</p>
<p>Line 47 refers to the initial CreateTestPage:</p>
<p>private void MainPage_Loaded(object sender, RoutedEventArgs e)<br />
        {<br />
            SystemTray.IsVisible = false; </p>
<p>47:        var testPage = UnitTestSystem.CreateTestPage() as IMobileTestPage;<br />
            BackKeyPress += (x, xe) =&gt; xe.Cancel = testPage.NavigateBack();<br />
            (Application.Current.RootVisual as PhoneApplicationFrame).Content = testPage; </p>
<p>        } </p>
<p>Hope you can help me out!<br />
thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul Candido</title>
		<link>http://www.jeff.wilcox.name/2010/05/sl3-utf-bits/comment-page-1/#comment-3126</link>
		<dc:creator>Paul Candido</dc:creator>
		<pubDate>Wed, 25 Aug 2010 03:39:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeff.wilcox.name/2010/05/sl3-utf-bits/#comment-3126</guid>
		<description>Hi Jeff, 

Thanks for releasing this and for your continued support of Silverlight testing

One problem I&#039;ve found though... 
We have a continuous integration server which runs our SL tests using the msbuild command line and in some cases we have a need to use the tag expression which worked great in the November toolkit release
Example:
msbuild -t:test /p:tagexpression=TagToRun 

But this does not seem to work in the new version, I also tried setting the tag expression in the App.xaml.cs

Example:
UnitTestSettings settings = new UnitTestSettings();  
settings.TestAssemblies.Add(Assembly.GetExecutingAssembly());
UnitTestSystem.SetStandardLogProviders(settings);
settings.TestHarness = new UnitTestHarness();
UnitTestSystem.SetTestService(settings);
settings.TagExpression = &quot;TagToRun&quot;;
this.RootVisual = UnitTestSystem.CreateTestPage(settings);

Thanks in advance</description>
		<content:encoded><![CDATA[<p>Hi Jeff, </p>
<p>Thanks for releasing this and for your continued support of Silverlight testing</p>
<p>One problem I&#8217;ve found though&#8230;<br />
We have a continuous integration server which runs our SL tests using the msbuild command line and in some cases we have a need to use the tag expression which worked great in the November toolkit release<br />
Example:<br />
msbuild -t:test /p:tagexpression=TagToRun </p>
<p>But this does not seem to work in the new version, I also tried setting the tag expression in the App.xaml.cs</p>
<p>Example:<br />
UnitTestSettings settings = new UnitTestSettings();<br />
settings.TestAssemblies.Add(Assembly.GetExecutingAssembly());<br />
UnitTestSystem.SetStandardLogProviders(settings);<br />
settings.TestHarness = new UnitTestHarness();<br />
UnitTestSystem.SetTestService(settings);<br />
settings.TagExpression = &#8220;TagToRun&#8221;;<br />
this.RootVisual = UnitTestSystem.CreateTestPage(settings);</p>
<p>Thanks in advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bert Lagaisse</title>
		<link>http://www.jeff.wilcox.name/2010/05/sl3-utf-bits/comment-page-1/#comment-3114</link>
		<dc:creator>Bert Lagaisse</dc:creator>
		<pubDate>Mon, 23 Aug 2010 14:17:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeff.wilcox.name/2010/05/sl3-utf-bits/#comment-3114</guid>
		<description>@Jeff: I am using the beta version in Visual Studio 2010 professional. The problem also occurs in the VS express version shipping with the beta tools.

Furthermore a small suggestion: could the start window of the WP7 unit testing app show the tags found in the tests, so we can just click it ? Since the beta emulator, the phone onscreen keyboard must be used to type text, and that takes time. The computer keyboard can&#039;t be used anymore.
Oh, and I would also love a EnqueueConditionalWithTimeOut ;-)
kind regards,
Bert Lagaisse</description>
		<content:encoded><![CDATA[<p>@Jeff: I am using the beta version in Visual Studio 2010 professional. The problem also occurs in the VS express version shipping with the beta tools.</p>
<p>Furthermore a small suggestion: could the start window of the WP7 unit testing app show the tags found in the tests, so we can just click it ? Since the beta emulator, the phone onscreen keyboard must be used to type text, and that takes time. The computer keyboard can&#8217;t be used anymore.<br />
Oh, and I would also love a EnqueueConditionalWithTimeOut <img src='http://www.jeff.wilcox.name/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /><br />
kind regards,<br />
Bert Lagaisse</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Wilcox</title>
		<link>http://www.jeff.wilcox.name/2010/05/sl3-utf-bits/comment-page-1/#comment-2959</link>
		<dc:creator>Jeff Wilcox</dc:creator>
		<pubDate>Wed, 18 Aug 2010 23:57:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeff.wilcox.name/2010/05/sl3-utf-bits/#comment-2959</guid>
		<description>@Bert,
This should be fixed in newer builds - what version of the phone tools are you using?</description>
		<content:encoded><![CDATA[<p>@Bert,<br />
This should be fixed in newer builds &#8211; what version of the phone tools are you using?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bert Lagaisse</title>
		<link>http://www.jeff.wilcox.name/2010/05/sl3-utf-bits/comment-page-1/#comment-2957</link>
		<dc:creator>Bert Lagaisse</dc:creator>
		<pubDate>Wed, 18 Aug 2010 23:54:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeff.wilcox.name/2010/05/sl3-utf-bits/#comment-2957</guid>
		<description>Hi. I watched your MIX10 video on unittesting WP7. My tests stop running because I get Visual Studio breaking on  exceptions in between my test project and tested projected (when the exception is thrown at the top level public method i&#039;m testing. I tried to disable it in the debug -&gt; exceptions list. But no luck.

any ideas  ?

greets

Bert Lagaisse</description>
		<content:encoded><![CDATA[<p>Hi. I watched your MIX10 video on unittesting WP7. My tests stop running because I get Visual Studio breaking on  exceptions in between my test project and tested projected (when the exception is thrown at the top level public method i&#8217;m testing. I tried to disable it in the debug -&gt; exceptions list. But no luck.</p>
<p>any ideas  ?</p>
<p>greets</p>
<p>Bert Lagaisse</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: The best resources for Windows Phone 7 Development</title>
		<link>http://www.jeff.wilcox.name/2010/05/sl3-utf-bits/comment-page-1/#comment-2934</link>
		<dc:creator>The best resources for Windows Phone 7 Development</dc:creator>
		<pubDate>Mon, 16 Aug 2010 14:09:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeff.wilcox.name/2010/05/sl3-utf-bits/#comment-2934</guid>
		<description>[...] How to build a Windows Phone 7 app using test driven development &#8211; introduces concepts of unit testing for Windows Phone 7, contrary to the location given in the tutorial, you should locate the unit testing toolkit here [...]</description>
		<content:encoded><![CDATA[<p>[...] How to build a Windows Phone 7 app using test driven development &#8211; introduces concepts of unit testing for Windows Phone 7, contrary to the location given in the tutorial, you should locate the unit testing toolkit here [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: A Cheat Sheet for Unit Testing Silverlight Apps on Windows Phone 7 &#124; Smarty Pants Coding</title>
		<link>http://www.jeff.wilcox.name/2010/05/sl3-utf-bits/comment-page-1/#comment-2848</link>
		<dc:creator>A Cheat Sheet for Unit Testing Silverlight Apps on Windows Phone 7 &#124; Smarty Pants Coding</dc:creator>
		<pubDate>Fri, 06 Aug 2010 15:25:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeff.wilcox.name/2010/05/sl3-utf-bits/#comment-2848</guid>
		<description>[...] you&#039;ll need the Silverlight Unit Test Framework tweaked for Windows Phone 7 from Jeff Wilcox&#039;s blog here. I&#039;ve attached the binaries to this post as well [...]</description>
		<content:encoded><![CDATA[<p>[...] you&#039;ll need the Silverlight Unit Test Framework tweaked for Windows Phone 7 from Jeff Wilcox&#039;s blog here. I&#039;ve attached the binaries to this post as well [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark Whitfeld</title>
		<link>http://www.jeff.wilcox.name/2010/05/sl3-utf-bits/comment-page-1/#comment-2821</link>
		<dc:creator>Mark Whitfeld</dc:creator>
		<pubDate>Fri, 30 Jul 2010 11:29:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeff.wilcox.name/2010/05/sl3-utf-bits/#comment-2821</guid>
		<description>Hi Jeff
Thanks for your quick reply.
It is not running inside a Silverlight plugin.
It is basically just a Silverlight Unit Test Framework project where I have made all dlls copy local (except for mscorlib) and have used the nunit test framework (compiled for silverlight). I am then using the nunit-console test runner to run the nunit tests in the compiled dll of the project.
The strange thing is that in SL3 when I used this code I would be able to access the dispatcher using at least one of the methods above, but in SL4 none of the methods work(they now give the &#039;agcore&#039; missing error), and there doesn&#039;t seem to be any dispatcher instance that I can access.
Is there any way of instantiating the ui thread without having to run it inside the silverlight application environment (with a dependency on &#039;agcore&#039;)?</description>
		<content:encoded><![CDATA[<p>Hi Jeff<br />
Thanks for your quick reply.<br />
It is not running inside a Silverlight plugin.<br />
It is basically just a Silverlight Unit Test Framework project where I have made all dlls copy local (except for mscorlib) and have used the nunit test framework (compiled for silverlight). I am then using the nunit-console test runner to run the nunit tests in the compiled dll of the project.<br />
The strange thing is that in SL3 when I used this code I would be able to access the dispatcher using at least one of the methods above, but in SL4 none of the methods work(they now give the &#8216;agcore&#8217; missing error), and there doesn&#8217;t seem to be any dispatcher instance that I can access.<br />
Is there any way of instantiating the ui thread without having to run it inside the silverlight application environment (with a dependency on &#8216;agcore&#8217;)?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Wilcox</title>
		<link>http://www.jeff.wilcox.name/2010/05/sl3-utf-bits/comment-page-1/#comment-2820</link>
		<dc:creator>Jeff Wilcox</dc:creator>
		<pubDate>Fri, 30 Jul 2010 09:09:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeff.wilcox.name/2010/05/sl3-utf-bits/#comment-2820</guid>
		<description>@Mark,
So is this all running inside a Silverlight plugin or not? Since the framework has a dependency on System.Windows, even if that is pulled it, it may be trying to p/invoke into the platform (SL)&#039;s native code, which is in agcore and nptctrl...</description>
		<content:encoded><![CDATA[<p>@Mark,<br />
So is this all running inside a Silverlight plugin or not? Since the framework has a dependency on System.Windows, even if that is pulled it, it may be trying to p/invoke into the platform (SL)&#8217;s native code, which is in agcore and nptctrl&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark Whitfeld</title>
		<link>http://www.jeff.wilcox.name/2010/05/sl3-utf-bits/comment-page-1/#comment-2819</link>
		<dc:creator>Mark Whitfeld</dc:creator>
		<pubDate>Fri, 30 Jul 2010 09:06:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeff.wilcox.name/2010/05/sl3-utf-bits/#comment-2819</guid>
		<description>Hi Jeff
Thanks for all the work you have done to make TDD for Silverlight at least a bit sane. I have been using your Silverlight Unit Test Framework with Silverlight 3 and did the conversions you mentioned earlier to get it running with nunit. The best thing is that I was able to run the tests from Resharper and from nunit-console.exe on my Hudson build server and display the test results :) I came across a problem with running tests that needed to be run on the UI Thread, but was able to work around it with the following class that I created: 
    public static class UIThread
    {
        public static void Run(Action action)
        {
            Dispatcher dispatcher = TryGetInstance(() =&gt; Deployment.Current.Dispatcher)
                                    ?? TryGetInstance(() =&gt;
                                    {
                                        PropertyInfo propertyInfo = typeof (Dispatcher).GetProperty(
                                            &quot;MainDispatcher&quot;, BindingFlags.Static &#124; BindingFlags.NonPublic);
                                        return (Dispatcher) propertyInfo.GetValue(null, new object[] {});
                                    })
                                    ?? TryGetInstance(() =&gt; Application.Current.RootVisual.Dispatcher);
            if (dispatcher != null)
            {
                dispatcher.BeginInvoke(action);
            }
            else
            {
                SynchronizationContext synchronizationContext = TryGetInstance(() =&gt; SynchronizationContext.Current);
                if (synchronizationContext != null) synchronizationContext.Send(state =&gt; action(), null);
                else action();
            }
        }

        private static T TryGetInstance(Func func) 
            where T : class
        {
            T instance = null;
            try
            {
                instance = func();
            }
            catch (Exception) { }
            return instance;
        }
    }

This class was able to run the test on the UI thread in the test runner as well as in resharper and through nunit-console. My world was complete!
Then I upgraded to SL4 and none of those dispatcher calls work any more when I am running the tests outside of your test runner. Most of the calls give an error about &#039;agcore.dll&#039; is missing. This used to work in SL3.
What would I need to do to get a dispatcher thread when running outside of the silverlight app? Any ideas? Is there some Silverlight initialisation call I can make?

Thanks
-Mark</description>
		<content:encoded><![CDATA[<p>Hi Jeff<br />
Thanks for all the work you have done to make TDD for Silverlight at least a bit sane. I have been using your Silverlight Unit Test Framework with Silverlight 3 and did the conversions you mentioned earlier to get it running with nunit. The best thing is that I was able to run the tests from Resharper and from nunit-console.exe on my Hudson build server and display the test results <img src='http://www.jeff.wilcox.name/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I came across a problem with running tests that needed to be run on the UI Thread, but was able to work around it with the following class that I created:<br />
    public static class UIThread<br />
    {<br />
        public static void Run(Action action)<br />
        {<br />
            Dispatcher dispatcher = TryGetInstance(() =&gt; Deployment.Current.Dispatcher)<br />
                                    ?? TryGetInstance(() =&gt;<br />
                                    {<br />
                                        PropertyInfo propertyInfo = typeof (Dispatcher).GetProperty(<br />
                                            &#8220;MainDispatcher&#8221;, BindingFlags.Static | BindingFlags.NonPublic);<br />
                                        return (Dispatcher) propertyInfo.GetValue(null, new object[] {});<br />
                                    })<br />
                                    ?? TryGetInstance(() =&gt; Application.Current.RootVisual.Dispatcher);<br />
            if (dispatcher != null)<br />
            {<br />
                dispatcher.BeginInvoke(action);<br />
            }<br />
            else<br />
            {<br />
                SynchronizationContext synchronizationContext = TryGetInstance(() =&gt; SynchronizationContext.Current);<br />
                if (synchronizationContext != null) synchronizationContext.Send(state =&gt; action(), null);<br />
                else action();<br />
            }<br />
        }</p>
<p>        private static T TryGetInstance(Func func)<br />
            where T : class<br />
        {<br />
            T instance = null;<br />
            try<br />
            {<br />
                instance = func();<br />
            }<br />
            catch (Exception) { }<br />
            return instance;<br />
        }<br />
    }</p>
<p>This class was able to run the test on the UI thread in the test runner as well as in resharper and through nunit-console. My world was complete!<br />
Then I upgraded to SL4 and none of those dispatcher calls work any more when I am running the tests outside of your test runner. Most of the calls give an error about &#8216;agcore.dll&#8217; is missing. This used to work in SL3.<br />
What would I need to do to get a dispatcher thread when running outside of the silverlight app? Any ideas? Is there some Silverlight initialisation call I can make?</p>
<p>Thanks<br />
-Mark</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Wilcox</title>
		<link>http://www.jeff.wilcox.name/2010/05/sl3-utf-bits/comment-page-1/#comment-2737</link>
		<dc:creator>Jeff Wilcox</dc:creator>
		<pubDate>Wed, 16 Jun 2010 05:30:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeff.wilcox.name/2010/05/sl3-utf-bits/#comment-2737</guid>
		<description>@Jabba,
Yeah it&#039;s a little inconsistent, it looks like there is a visual tree bug of some sort in the Silverlight plugin that is manifested in this sort of test stage situation. I&#039;ve seen it on tests now, too.</description>
		<content:encoded><![CDATA[<p>@Jabba,<br />
Yeah it&#8217;s a little inconsistent, it looks like there is a visual tree bug of some sort in the Silverlight plugin that is manifested in this sort of test stage situation. I&#8217;ve seen it on tests now, too.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jabba</title>
		<link>http://www.jeff.wilcox.name/2010/05/sl3-utf-bits/comment-page-1/#comment-2727</link>
		<dc:creator>Jabba</dc:creator>
		<pubDate>Fri, 11 Jun 2010 20:45:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeff.wilcox.name/2010/05/sl3-utf-bits/#comment-2727</guid>
		<description>UI and test speed much improved, thanks.  I do notice that the Test Stage doesn&#039;t show anything added to the TestPanel unless I click on the splitter, then it updates and shows every time a test add something.</description>
		<content:encoded><![CDATA[<p>UI and test speed much improved, thanks.  I do notice that the Test Stage doesn&#8217;t show anything added to the TestPanel unless I click on the splitter, then it updates and shows every time a test add something.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: NUnit for Silverlight, now with data driven tests &#171; greenicicle</title>
		<link>http://www.jeff.wilcox.name/2010/05/sl3-utf-bits/comment-page-1/#comment-2725</link>
		<dc:creator>NUnit for Silverlight, now with data driven tests &#171; greenicicle</dc:creator>
		<pubDate>Fri, 11 Jun 2010 07:54:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeff.wilcox.name/2010/05/sl3-utf-bits/#comment-2725</guid>
		<description>[...] for Silverlight. It supports NUnit 2.5.5 on Silverlight 3 and 4, and I&#8217;ve added support for Jeff Wilcox&#8217; port of the April version of the Silverlight testing framework on Silverlight [...]</description>
		<content:encoded><![CDATA[<p>[...] for Silverlight. It supports NUnit 2.5.5 on Silverlight 3 and 4, and I&#8217;ve added support for Jeff Wilcox&#8217; port of the April version of the Silverlight testing framework on Silverlight [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian</title>
		<link>http://www.jeff.wilcox.name/2010/05/sl3-utf-bits/comment-page-1/#comment-2719</link>
		<dc:creator>Brian</dc:creator>
		<pubDate>Tue, 08 Jun 2010 05:24:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeff.wilcox.name/2010/05/sl3-utf-bits/#comment-2719</guid>
		<description>Thank you for your passion. very useful.

 

I have a question.

 

=========================================================================================

I want to get the result file(.trx format) like Desktop Silverlight Unit Test Framework.

How can i generating result file in my TestApp File System ?

 

For desktop :

I use &#039;Visual Studio Command Prompt&#039;. Generated &#039;TestResult.trx&#039;.

ex) msbuild /t:coveragetest

 

I want to report an other person for testing result.

so..i want make like this App

   [1] MyTestApp of WP7 drop the result file.

   [2] Upload result file to Web Server.
 

   So, I need to result file.

 
If UTF is not supported, i want to make this solution by reference SL3 UTF.

Is that possible ?

If possible, Where is the result making module source ?
 

Please help me.</description>
		<content:encoded><![CDATA[<p>Thank you for your passion. very useful.</p>
<p>I have a question.</p>
<p>=========================================================================================</p>
<p>I want to get the result file(.trx format) like Desktop Silverlight Unit Test Framework.</p>
<p>How can i generating result file in my TestApp File System ?</p>
<p>For desktop :</p>
<p>I use &#8216;Visual Studio Command Prompt&#8217;. Generated &#8216;TestResult.trx&#8217;.</p>
<p>ex) msbuild /t:coveragetest</p>
<p>I want to report an other person for testing result.</p>
<p>so..i want make like this App</p>
<p>   [1] MyTestApp of WP7 drop the result file.</p>
<p>   [2] Upload result file to Web Server.</p>
<p>   So, I need to result file.</p>
<p>If UTF is not supported, i want to make this solution by reference SL3 UTF.</p>
<p>Is that possible ?</p>
<p>If possible, Where is the result making module source ?</p>
<p>Please help me.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

