// ----------------------------------------------------------------------- // // Copyright 2014 MIT Licence. See licence.md for more information. // // ----------------------------------------------------------------------- namespace Perspex.Styling.UnitTests { using System; using System.Collections.Generic; using Perspex.Styling; public abstract class TestTemplatedControl : ITemplatedControl, IStyleable { public abstract Classes Classes { get; } public abstract string Name { get; } public abstract Type StyleKey { get; } public abstract ITemplatedControl TemplatedParent { get; } public abstract IEnumerable VisualChildren { get; } public IObservable GetObservable(PerspexProperty property) { throw new NotImplementedException(); } public IDisposable Bind(PerspexProperty property, IObservable source, BindingPriority priority) { throw new NotImplementedException(); } public void SetValue(PerspexProperty property, object value, BindingPriority priority) { throw new NotImplementedException(); } public IObservable GetObservable(PerspexProperty property) { throw new NotImplementedException(); } public bool IsRegistered(PerspexProperty property) { throw new NotImplementedException(); } public void ClearValue(PerspexProperty property) { throw new NotImplementedException(); } public object GetValue(PerspexProperty property) { throw new NotImplementedException(); } public bool IsSet(PerspexProperty property) { throw new NotImplementedException(); } public IDisposable Bind(PerspexProperty property, IObservable source, BindingPriority priority = BindingPriority.LocalValue) { throw new NotImplementedException(); } public T GetValue(PerspexProperty property) { throw new NotImplementedException(); } public void SetValue(PerspexProperty property, T value, BindingPriority priority = BindingPriority.LocalValue) { throw new NotImplementedException(); } } }