public WithFileAttribute(TestTextureFormat textureFormat, TestTextureType textureType, TestTextureTool textureTool, string inputFile, bool isRegex = false)
 {
     this.textureFormat = textureFormat;
     this.textureType   = textureType;
     this.textureTool   = textureTool;
     this.inputFile     = inputFile;
     this.isRegex       = isRegex;
 }
 public TestTextureProvider(
     string methodName,
     TestTextureFormat textureFormat,
     TestTextureType textureType,
     TestTextureTool textureTool,
     string inputFile,
     bool isRegex)
 {
     this.MethodName    = methodName;
     this.TextureFormat = textureFormat;
     this.TextureType   = textureType;
     this.TextureTool   = textureTool;
     this.InputFile     = inputFile;
     this.IsRegex       = isRegex;
 }
 public TestTextureProvider(
     string methodName,
     TestTextureFormat textureFormat,
     TestTextureType textureType,
     TestTextureTool textureTool,
     string inputFile,
     bool isRegex)
 {
     this.MethodName    = methodName;
     this.TextureFormat = textureFormat;
     this.TextureType   = textureType;
     this.TextureTool   = textureTool;
     this.InputFile     = inputFile;
     this.IsRegex       = isRegex;
     this.Utility       = new ImagingTestCaseUtility
     {
         SourceFileOrDescription = inputFile,
         TestName = methodName
     };
 }