I have a single WP7 testing module and it works on the phone. The results are pretty hard to read, so I write them in an XDocument.
My question is: how can I get this XML file from the phone and to my desktop, where can I really analyze the results?
What I have done so far is to put the Debugger.Break () line right after creating the xml summary. Then I can copy / paste xml from VS or check it right in the debugger. The problem is that if you don't have a debugger connected yet (which is good when there are a lot of ExpectedException tests) Debugger.Attach () doesn't seem to work, and also manually binding VS to emulator processes seems to do nothing.
I tried to run the emulator with some additional command line options, so I could try to figure out if I could make it use my actual hard drive as my own drive, but I could not make it work ...
PS It is probably not wise to pop up a new process, such as a web server, to listen to this data. I know how to do this, I would just not want to.
So how do you draw material from these phones?
source
share