Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/xamarin/Xamarin.PropertyEditing.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Maupin <ermaup@microsoft.com>2018-08-20 21:47:32 +0300
committerEric Maupin <ermaup@microsoft.com>2018-10-17 22:12:52 +0300
commit048813758e59ad62dc2886e9f0c71eeeb8db0aaf (patch)
tree72138a9588d60edf7e10601c34e9fd573d5ea456 /Xamarin.PropertyEditing.Tests
parentb7519cdec7b3f7ecfcdd388777c81fc257085350 (diff)
[Core] Bindings should be set via SourceDescriptor
Diffstat (limited to 'Xamarin.PropertyEditing.Tests')
-rw-r--r--Xamarin.PropertyEditing.Tests/PropertyViewModelTests.cs7
1 files changed, 3 insertions, 4 deletions
diff --git a/Xamarin.PropertyEditing.Tests/PropertyViewModelTests.cs b/Xamarin.PropertyEditing.Tests/PropertyViewModelTests.cs
index f606c75..f1a0d51 100644
--- a/Xamarin.PropertyEditing.Tests/PropertyViewModelTests.cs
+++ b/Xamarin.PropertyEditing.Tests/PropertyViewModelTests.cs
@@ -1426,10 +1426,9 @@ namespace Xamarin.PropertyEditing.Tests
Assert.That (requested, Is.True, "Binding wasn't requested");
Assert.That (vm.ValueSource, Is.EqualTo (ValueSource.Binding));
- editor.Verify (oe => oe.SetValueAsync (mockProperty.Object, new ValueInfo<TValue> {
- Source = ValueSource.Binding,
- SourceDescriptor = bindObject
- }, It.IsAny<PropertyVariation> ()));
+ editor.Verify (oe => oe.SetValueAsync (mockProperty.Object, It.Is<ValueInfo<TValue>> (vi =>
+ vi.Source == ValueSource.Binding && vi.SourceDescriptor == bindObject
+ ), It.IsAny<PropertyVariation> ()));
}
protected TViewModel GetViewModel (IPropertyInfo property, IObjectEditor editor)