public void TestConstructorCreateNodeMouseHandler()
 {
     Ecell.IDE.Plugins.PathwayWindow.PathwayControl control = null;
     Ecell.IDE.Plugins.PathwayWindow.Components.ComponentSetting cs = null;
     CreateNodeMouseHandler testCreateNodeMouseHandler = new CreateNodeMouseHandler(control, cs);
     Assert.IsNotNull(testCreateNodeMouseHandler, "Constructor of type, CreateNodeMouseHandler failed to create instance.");
     Assert.Fail("Create or modify test(s).");
 }
 public void TearDown()
 {
     _unitUnderTest = null;
 }
 public void SetUp()
 {
     Ecell.IDE.Plugins.PathwayWindow.PathwayControl control = null;
     Ecell.IDE.Plugins.PathwayWindow.Components.ComponentSetting cs = null;
     _unitUnderTest = new CreateNodeMouseHandler(control, cs);
 }