Example #1
0
		public RegexTestFilter (Regex regex, TestFilterAction action)
		{
			if (regex == null)
				throw new ArgumentNullException ("regex");
			_regex = regex;
			_action = action;
		}
Example #2
0
		public static RegexTestFilter Parse (string s, TestFilterAction filterAction)
		{
			if (string.IsNullOrEmpty (s))
				throw new ArgumentException ("Filter string cannot be null or empty", "s");
	
			string pattern;
			if (s.Length > 1 && s.StartsWith ("/") && s.EndsWith ("/")) {
				pattern = s.Substring (1, s.Length - 2);
			} else {
				pattern = string.Join ("", ".*", s, ".*");
			}
	
			var regex = new Regex (pattern, RegexOptions.Compiled | RegexOptions.IgnoreCase);
			return new RegexTestFilter (regex, filterAction);
		}