Dev2.Core.Tests.DragDropHelpersTests.DragDropHelpers_PreventDrop_NullDataObject_ReturnsFalse C# (CSharp) Method

DragDropHelpers_PreventDrop_NullDataObject_ReturnsFalse() private method

        public void DragDropHelpers_PreventDrop_NullDataObject_ReturnsFalse()
        {
            //------------Setup for test--------------------------
            var dragDropHelpers = new DragDropHelpers(GetMockWorkflowDesignerView());
            //------------Execute Test---------------------------
            bool canDoDrop = dragDropHelpers.PreventDrop(null);
            //------------Assert Results-------------------------
            Assert.IsFalse(canDoDrop);
        }