@ -18,7 +18,7 @@ namespace ImageSharp.Formats
public static readonly IEnumerable<string> MimeTypes = new[] { "image/bmp", "image/x-windows-bmp" };
/// <summary>
/// The list of mimetypes that equate to a bmp
/// The list of file extensions that equate to a bmp
/// </summary>
public static readonly IEnumerable<string> FileExtensions = new[] { "bm", "bmp", "dip" };
}
@ -99,7 +99,7 @@ namespace ImageSharp.Formats
public static readonly IEnumerable<string> MimeTypes = new[] { "image/gif" };
public static readonly IEnumerable<string> FileExtensions = new[] { "gif" };
@ -23,7 +23,7 @@ namespace ImageSharp.Formats
public static readonly IEnumerable<string> MimeTypes = new[] { "image/jpeg", "image/pjpeg" };
/// The list of mimetypes that equate to a jpeg
/// The list of file extensions that equate to a jpeg
public static readonly IEnumerable<string> FileExtensions = new[] { "jpg", "jpeg", "jfif" };
public static readonly IEnumerable<string> MimeTypes = new[] { "image/png" };
public static readonly IEnumerable<string> FileExtensions = new[] { "png" };
@ -27,7 +27,7 @@ namespace ImageSharp.Tests
public ConfigurationTests()
{
this.DefaultConfiguration = Configuration.CreateDefaultInstance();
this.ConfigurationEmpty = Configuration.CreateDefaultInstance();
this.ConfigurationEmpty = new Configuration();
[Fact]