using System; using NUnit.Framework; namespace Xamarin.Forms.Xaml.UnitTests { [TestFixture] public class Issue1493 { [Test] //mostly happens in european cultures [SetCulture ("fr-FR")] public void CultureInvariantNumberParsing () { var xaml = @" "; View view = new View (); view.LoadFromXaml (xaml); Assert.DoesNotThrow (() => view.LoadFromXaml (xaml)); } } }