I have this static helper function:
public static DependencyObject GetParentObject(DependencyObject child)
{
if (child == null) return null;
ContentElement contentElement = child as ContentElement;
if (contentElement != null)
{
var parent = ContentOperations.GetParent(contentElement);
if (parent != null) return parent;
var fce = contentElement as FrameworkContentElement;
return fce != null ? fce.Parent : null;
}
//if it's not a ContentElement, rely on VisualTreeHelper
return VisualTreeHelper.GetParent(child);
}
It works in a real application, but I’m trying to write some unit tests for it. Here’s my first attempt:
[Test]
public void GetParentObject_returns_immediate_parent()
{
var contentControl = new ContentControl();
var textBox = new TextBox();
contentControl.BeginInit();
contentControl.Content = textBox;
contentControl.EndInit();
var result = UIHelper.GetParentObject(textBox);
Assert.AreSame(contentControl, result);
}
Unfortunately it fails because VisualTreeHelper is returning null. How can I mock up a visual tree that will work?
This is why statics are problematic.
You can abstract the functionality behind an interface and create a default implementation that uses the static method. You can then use dependency injection, which makes this unit test trivial — mock the dependency on IVisualTreeHelper or roll your own stub implementation that you can configure to return any value you assign.
Obviously, you may need to add other
VisualTreeHelpermethods to your interface and default implementation, if you’re using other methods elsewhere.It is still not completely clean because the unit you’re testing is itself static, and you’re going to run into exactly the same problem when you try to unit test any class that relies on your UIHelper class’ static methods.