How do you run Universal Windows (UWP) unit test projects from the command line?
I am using the MSTestFramework.
Followed by @Marinov, UWP does not support to test the App currently. Only Library can be testable.
So, if you want to do unit test in UWP, you have to pull your logic codes out from App project and pour them into newly created library project. Test project and original app project could be referenced afterwards.