You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 3, 2023. It is now read-only.
I am getting the following error when I try to run an xUnit test in a Xamarin project that uses Xam.Plugins.Settings to store data to the device:
Message: System.NotImplementedException : This functionality is not implemented in the portable version of this assembly. You should reference the NuGet package from your main application project in order to reference the platform-specific implementation.
The exception occurs in the ISettings property initialization of the Settings class, which has the following form:
public static class Settings
{
private static ISettings AppSettings
{
get
{
return CrossSettings.Current;
}
}
}
When xUnit gets to the return CrossSettings line, the error occurs. Any chance anyone can tell me why this is happening? I have the nuget package installed in both the iOS and Android projects.
The text was updated successfully, but these errors were encountered:
You're right, it should be under SettingsPlugin. Apologies.
I'm relatively new to xUnit so please forgive my ignorance, but how would one go about mocking out ISettings? I'm wanting to test MessagingCenter actions that are dependent upon changes to the Settings object, so would I have to recreate the code I want to test in a mock class then? Again, please forgive my lack of understanding.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I am getting the following error when I try to run an xUnit test in a Xamarin project that uses Xam.Plugins.Settings to store data to the device:
Message: System.NotImplementedException : This functionality is not implemented in the portable version of this assembly. You should reference the NuGet package from your main application project in order to reference the platform-specific implementation.
The exception occurs in the ISettings property initialization of the Settings class, which has the following form:
When xUnit gets to the return CrossSettings line, the error occurs. Any chance anyone can tell me why this is happening? I have the nuget package installed in both the iOS and Android projects.
The text was updated successfully, but these errors were encountered: