private void TestFrequencyMapping()
        {
            int    hr = 0;
            string freq;

            hr = tuningSpace.put_FrequencyMapping("azerty");
            DsError.ThrowExceptionForHR(hr);

            hr = tuningSpace.get_FrequencyMapping(out freq);
            DsError.ThrowExceptionForHR(hr);

            Debug.Assert(freq == "azerty", "ITuningSpace.get_FrequencyMapping / put_FrequencyMapping");
        }