I am extremely new to developing Windows Phone, and I read, for example here , that there is no unit testing framework for Windows Phone applications.
It seemed strange to me, because, for example, if I have a class library with a bunch of classes that perform operations, I would create a unit testing project, add a class library link and unit test each class in the same way I always was.
So, I created a dummy Windows Phone class library with the MyClass class with the Add (int x, int y) method and added a link to a regular test project.
Interestingly, the link contains a warning sign, but tests run, fail, and fail accordingly.
So my questions are:
What is the real deal with unit testing Windows Phone code?
Why is there a warning sign in the test project for the Windows Phone class library link?
Thanks for your enlightenment :)
source
share