A mock FormatConverter that implements IFormatConverter for unit testing purposes
Inheritance: IFormatConverter
        /// <summary>
        /// Replaces the registered converters with mock ones
        /// </summary>
        public static void InitializeWithMockData()
        {
            var converter = new MockFormatConverter();

            SupportedConverters = new Dictionary <string, IFormatConverter>();
            SupportedConverters.Add(converter.GetSupportedInputFormat(), converter);
        }
		/// <summary>
		/// Replaces the registered converters with mock ones
		/// </summary>
		public static void InitializeWithMockData()
		{
			var converter = new MockFormatConverter();
			SupportedConverters = new Dictionary<string, IFormatConverter>();
			SupportedConverters.Add(converter.GetSupportedInputFormat(), converter);
		}