module SimpleCov::Configuration

def add_group(group_name, filter_argument=nil, &filter_proc)


(while filters exclude when the filter is applicable).
argument is the desired group name and files PASSING the filter end up in the group
Define a group for files. Works similar to add_filter, only that the first
def add_group(group_name, filter_argument=nil, &filter_proc)
  groups[group_name] = parse_filter(filter_argument, &filter_proc)
end