Ejemplo n.º 1
0
        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");
        }
Ejemplo n.º 2
0
 public void WindowPropertyTest()
 {
     MyToolWindow target = new MyToolWindow();
     Assert.IsNotNull(target.Content, "Content property was null");
 }