public void TestConstructorCreateReactionMouseHandler()
 {
     Ecell.IDE.Plugins.PathwayWindow.PathwayControl control = null;
     CreateReactionMouseHandler testCreateReactionMouseHandler = new CreateReactionMouseHandler(control);
     Assert.IsNotNull(testCreateReactionMouseHandler, "Constructor of type, CreateReactionMouseHandler 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;
     _unitUnderTest = new CreateReactionMouseHandler(control);
 }