XamlBindingTest.cs 567 B

123456789101112131415161718192021
  1. // Copyright (c) The Perspex Project. All rights reserved.
  2. // Licensed under the MIT license. See licence.md file in the project root for full license information.
  3. using Moq;
  4. using Perspex.Markup.Xaml.DataBinding;
  5. using OmniXaml.TypeConversion;
  6. using Xunit;
  7. namespace Perspex.Xaml.Base.UnitTest
  8. {
  9. public class XamlBindingTest
  10. {
  11. [Fact]
  12. public void TestNullDataContext()
  13. {
  14. //var t = new Mock<ITypeConverterProvider>();
  15. //var sut = new XamlBinding(t.Object);
  16. //sut.BindTo(null);
  17. }
  18. }
  19. }