public void ExtractTextInvalidKeys(InvalidExtractText value) { var prop = new Dictionary <string, object> { ["bucket"] = BucketName }; if (!value.ToString().Equals(MissParameter)) { prop["keys"] = new[] { InvalidExtractTextMapper[value] }; } PerformTest(prop); }
public void ExtractTextInvalidBucket(InvalidExtractText value) { var prop = new Dictionary <string, object> { }; if (!value.ToString().Equals(MissParameter)) { prop["bucket"] = InvalidExtractTextMapper[value]; } prop["keys"] = KeysList; PerformTest(prop); }