PropertyMountPointTest.cs 513 B

123456789101112131415161718
  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 Perspex.Markup.Xaml.DataBinding.ChangeTracking;
  4. using System;
  5. using Xunit;
  6. namespace Perspex.Xaml.Base.UnitTest
  7. {
  8. public class PropertyMountPointTest
  9. {
  10. [Fact]
  11. public void SourceAndPathAreNull()
  12. {
  13. Assert.Throws<ArgumentNullException>(() => new PropertyMountPoint(null, null));
  14. }
  15. }
  16. }