private void Testget_CLSID()
        {
            int    hr = 0;
            string clsid;

            hr = tuningSpace.get_CLSID(out clsid);
            DsError.ThrowExceptionForHR(hr);

            // This is an ATSC Tuning Space...
            Debug.Assert(clsid == typeof(ATSCTuningSpace).GUID.ToString("B").ToUpper(), "ITuningSpace.get_CLSID");
        }