# File lib/simplecov/command_guesser.rb, line 5
  def self.guess(command)
    case command
      when /#{'test/functional/'}/
        "Functional Tests"
      when /#{'test/integration/'}/
        "Integration Tests"
      when /#{'test/'}/
        "Unit Tests"
      when /cucumber/, /features/
        "Cucumber Features"
      when /#{'spec/'}/
        "RSpec"
      else
        return command
    end
  end