|
|
|
@ -83,6 +83,11 @@ namespace SixLabors.ImageSharp.Tests |
|
|
|
return new Image<TPixel>(42, 42); |
|
|
|
} |
|
|
|
|
|
|
|
public PixelTypeInfo DetectPixelType(Configuration configuration, Stream stream) |
|
|
|
{ |
|
|
|
throw new NotImplementedException(); |
|
|
|
} |
|
|
|
|
|
|
|
// Couldn't make xUnit happy without this hackery:
|
|
|
|
|
|
|
|
private static ConcurrentDictionary<string, int> invocationCounts = new ConcurrentDictionary<string, int>(); |
|
|
|
@ -145,6 +150,11 @@ namespace SixLabors.ImageSharp.Tests |
|
|
|
return new Image<TPixel>(42, 42); |
|
|
|
} |
|
|
|
|
|
|
|
public PixelTypeInfo DetectPixelType(Configuration configuration, Stream stream) |
|
|
|
{ |
|
|
|
throw new NotImplementedException(); |
|
|
|
} |
|
|
|
|
|
|
|
private static ConcurrentDictionary<string, int> invocationCounts = new ConcurrentDictionary<string, int>(); |
|
|
|
|
|
|
|
private string callerName = null; |
|
|
|
|