-
-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
UWP tests don't work #17
Comments
Sorry for the long answer. Yes, feel free to do it |
…se for UWP only MSTests work well. Fixing issue PCLExt#17
I just tried the tests without any modification, they fail, well, they are left pending. Hope you'll be able to fix it. |
Ok, I'll check it asap. I believe it will be this week. As far as I remember they worked well. |
Hi again @Aragas.
The issue may be if you launch tests in configuration "Any CPU". You need to select configuration x86 or x64 for running UWP tests because a UWP project can't be platform independent & should be compiled into native instructions. Prove. |
@ArtjomP well, I'm not sure on the issue |
Anyway, the tests work, so everything should be fine. After you'll check those issues and give a green light, I'll release 1.4.1 with UWP |
* UWP unit tests framework has been changed from NUnit to MSTest. Because for UWP only MSTests work well. Fixing issue #17 * Tests added
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.
The text was updated successfully, but these errors were encountered: