Update to use full test from PR 1292

This commit is contained in:
E.Z. Hart 2017-11-27 19:44:34 -07:00
Родитель 05741eb2b2
Коммит 3a44508960
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 1196DD903A2F7606
1 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -163,9 +163,11 @@ namespace Xamarin.Forms.Core.UnitTests
Assert.That (() => binding.StringFormat = "{0}", Throws.InvalidOperationException);
}
[Test]
public void StringFormatNonStringType()
[TestCase("en-US"), TestCase("tr-TR")]
public void StringFormatNonStringType(string culture)
{
System.Threading.Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo(culture);
var property = BindableProperty.Create("Foo", typeof(string), typeof(MockBindable));
var binding = new Binding("Value", stringFormat: "{0:P2}");