public void MyToolWindowConstructorTest() { PendingChangesWindow target = new PendingChangesWindow(); Assert.IsNotNull(target, "Failed to create an instance of PendingChangesWindow"); MethodInfo method = target.GetType().GetMethod("get_Content", BindingFlags.Public | BindingFlags.Instance); Assert.IsNotNull(method.Invoke(target, null), "PendingChangesControl object was not instantiated"); }
public void WindowPropertyTest() { PendingChangesWindow target = new PendingChangesWindow(); Assert.IsNotNull(target.Content, "Content property was null"); }