Hi there!
It seems that NUnit doesn't support UWP tests.
Do you mind if I change UWP tests from NUnit to MS test?
It will require some conditional variables for every test. Something like this:
#ifdef UWP [TestMethod] #else [Test] #endif
Or am I wrong and UWP tests actually work well?
May be any other ideas.