public static CSharpTestOptions EnableConfigOption(this CSharpTestOptions options, string key)
 {
     return(AddConfigOption(options, key, "true"));
 }
 public static CSharpTestOptions AddConfigOption(this CSharpTestOptions options, string key, string value)
 {
     return(options.WithConfigOptions(options.ConfigOptions.SetItem(key, value)));
 }
 public static CSharpTestOptions AddConfigOption(this CSharpTestOptions options, string key, bool value)
 {
     return(AddConfigOption(options, key, (value) ? "true" : "false"));
 }