public void GetMimeType_Null()
        {
            // Verify no exception is thrown
            var platform = new MacPlatformServiceTest();

            platform.GetMimeType(null);
        }
        public void GetMimeType_NoExtension()
        {
            // Verify no exception is thrown
            var platform = new MacPlatformServiceTest();

            platform.GetMimeType("test");
        }
		public void GetMimeType_Null ()
		{
			// Verify no exception is thrown
			var platform = new MacPlatformServiceTest ();
			platform.GetMimeType (null);
		}
		public void GetMimeType_NoExtension ()
		{
			// Verify no exception is thrown
			var platform = new MacPlatformServiceTest ();
			platform.GetMimeType ("test");
		}