Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why does the MSTest accessor file contain a "desktop" reference

I am using VS2010 to create a new unit test project to test my solution. After I created the unit tests, the VS created a .accessor file. I know it is used to help test the private or protect members. But I opened the .accessor file, I found the file contain two line text, just like below format:

MyProjcet.dll

Desktop

I don't know why the Desktop reference is there?

like image 362
aguai Avatar asked Jan 16 '12 02:01

aguai


1 Answers

According to the thread Best practices trying to use the same unit test on desktop & device:

It explains that this is a setting for a Desktop device (rather than a mobile one)

like image 51
Mickey Perlstein Avatar answered Oct 02 '22 23:10

Mickey Perlstein