public void BindDisabled()
        {
            watchpoint.Enable(0);
            var result = watchpoint.Bind();
            IDebugErrorBreakpoint2 watchpointError = GetWatchpointError();

            mockBreakpointManager.Received().RegisterWatchpoint(watchpoint);
            Assert.AreEqual(null, watchpointError);
            Assert.AreEqual(VSConstants.S_OK, result);
            mockLldbWatchpoint.Received(1).SetEnabled(false);
        }