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

DragDropHelpers_PreventDrop_NoFormats_ReturnsFalse() private method

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