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