class Swagcov::Coverage

def initialize dotfile: ::Swagcov::Dotfile.new, routes: ::Swagcov.project_routes

def initialize dotfile: ::Swagcov::Dotfile.new, routes: ::Swagcov.project_routes
  @dotfile = dotfile
  @routes = routes
  @data = {
    covered: [],
    ignored: [],
    uncovered: [],
    total_count: 0,
    covered_count: 0,
    ignored_count: 0,
    uncovered_count: 0
  }
end