TestSelectors.cs 622 B

1234567891011121314151617181920
  1. // Copyright (c) The Avalonia Project. All rights reserved.
  2. // Licensed under the MIT license. See licence.md file in the project root for full license information.
  3. using System;
  4. using Avalonia.Styling;
  5. namespace Avalonia.Styling.UnitTests
  6. {
  7. public static class TestSelectors
  8. {
  9. public static Selector SubscribeCheck(this Selector selector)
  10. {
  11. throw new NotImplementedException();
  12. //return new Selector(
  13. // selector,
  14. // control => new SelectorMatch(((TestControlBase)control).SubscribeCheckObservable),
  15. // "");
  16. }
  17. }
  18. }