private void TestDefaultLocator()
        {
            int      hr = 0;
            ILocator locator;

            hr = tuningSpace.get_DefaultLocator(out locator);
            DsError.ThrowExceptionForHR(hr);

            hr = tuningSpace.put_DefaultLocator(locator);
            DsError.ThrowExceptionForHR(hr);

            Debug.Assert((hr == 0) && (locator != null), "ITuningSpace.get_DefaultLocator / put_DefaultLocator");

            Marshal.ReleaseComObject(locator);
        }